.sign-up-box {
    background: #2E4756;
    color: white;
    padding: 1rem;
    align-items: center;
    width: 680px;
    height:680px;
    border-radius: 10px;
    position:absolute;
    /* center exluding navbar */
    top:calc(50% + 45px);
    left:50%;
    transform: translate(-50%,-50%);
    font-family:'Roboto',sans-serif;
}

.sign-up-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register-title{
    margin-bottom:8px;
}

.register-text{
    margin:0px;
    color:#ACA5A5;
}

.password-area {
    display: flex;
}

.sign-up-field {
    width: 420px;
    height: 45px;
    border-radius: 8px;
    text-indent: 10px;
    background-color: white;
    color: black;
    font-size: 16px;
    border: none;
    margin-top:20px;
}

.sign-up-form-button {
    height: 45px;
    width: 420px;
    font-size: 20px;
    border-radius: 8px;
    border: none;
    font-weight:bold;
    color:white;
    background-color: #29743E;
    cursor:pointer;
}

.divider-div{
    height:2px;
    width:400px;
    border:none;
    background-color:white;
    margin-top:20px;
    margin-bottom:20px;
}

.redirect:link {
    height: 45px;
    width: 420px;
    font-size: 20px;
    border-radius: 8px;
    border: none;
    font-weight:bold;
    text-decoration-line:none;
    color:white;
    background-color: #779CAB;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
}
a:visited {
    color: white;
}

a:hover {
    color: white;
}

a:active {
    color: white;
}

.password-eye-icon {
    width: 30px;
    height:30px; 
    margin-top:27px;
    margin-left:5px; 
    margin-right:5px;
}
.error-message {
    margin-top:10px;
    margin-bottom:10px;
    height:30px;
    display:flex;
    justify-content:top;
    flex-direction:column;
    align-items:center;
    font-size: 18px;
    color:#FF4D4D;
    /* this is to only show one error at a time */
    padding-top:5px;
    gap:40px;
    overflow-y:hidden;
}

@media (max-width: 720px) {
    .sign-up-box{
        width:450px;
    }
    .sign-up-field{
        width:320px;
    }
    .sign-up-form-button{
        width:320px;
    }
    .redirect:link{
        width:320px;
    }
    .divider-div{
        width:300px;
    }
}