.register-form-container h1 {
    font-weight: bold;
    color: #8a4421;    
    padding: 0 30px;
    margin: 0;    
    text-align: center;
}

.register-form-container h3 {
    font-weight: bold;
    color: #8a4421;    
    padding: 0 30px;
    margin: 20px;    
    text-align: center;
    cursor: pointer;
}

label {
    color: #917A60;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.container {
    display: flex;
    width: 100%;
    
}

.registration-banner{
    width: 55%;
    padding: 30px;
    background-color: #8a4421;
}
.registration-banner img {
    width: 100%;
}

.register-form-container {
    background-color: #F6F3F0;
    border-radius: 10px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
}

.login-form-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px auto;
    font-size: 14px;
}

.register-form-container form{
    width: 100%;
    height: 100%;
    padding: 30px;
}

#login {        
    width: 100%;
    height: 100%;    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#showLogin {
    cursor: pointer;
}

.row {
    content: "";
    display: table;
    clear: both;
    width: 100%;
    margin-top: 10px;
}

.column {
    margin: auto;
    width: 300px;    
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.column input, .login-form-container input {
    width: 100%;
    margin: 5px 0 10px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #8a4421;
    outline: none;
}

.submit-btn-container{
    display: block;
    text-align: center;   
}

#description-row {
    height: auto;
}

#name,
#phone {
    width: 90%;
    height: 30px;
    margin-top: 10px;

}

#subject {
    width: 290%;
    height: 30px;
    margin-top: 10px;
}

#description {
    width: 290%;
    height: 200px;
    resize: vertical;
    margin-top: 10px;
}

#submit-btn, .login-form-container button  {
    border-radius: 35px;
    border: none;
    color: white;
    background-color: #8a4421;
    cursor: pointer;
    height: 35px;    
    width: 130px;
}

.content-wrapper p{
    font-size: 1rem;
    padding-bottom: 10px;
}


.register-form-container span{
    color: #8a4421;    
    font-size: small;
    text-align: center;
}

.error {
    color: red !important;
}