.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;
    margin-top: 20px;
}

.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 {
    color: white;
    font-size: 16px;
    font-weight: 500;
    background-color: rgba(220, 38, 38, 0.16);
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 14px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #f97373;
    backdrop-filter: blur(2px);
}

.error-message:empty {
    display: none;
}

@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;
    }
}