.right .register_nav{
    background-color: #541610;
}

.container {
    padding-top: 0;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65vh;
}


.register-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 35%;
    width: 100%;
}
.register-box h1{
    font-size: 1em;
}

.form-with-validation {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: x-large;
    padding-top: 2rem;
    font-weight: 600;
}
.form-with-validation .helptext {
    display: none;
}
.form-with-validation ul{
    list-style-type: none;
    color: #812c24;
    font-size: large;
    font-weight: 300;
    text-decoration: underline;
}
.form-submit {
    margin-top: 20px;
    padding: 10px 20px;
    width: 40%;
    align-items: center;
    border: none;
    background-color: #812c24;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #812c24;
}

@media (max-width: 580px) {
    .register-box{
	margin-top: 2em;
        max-width: 90%;
    }
}
