.signUp_content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 88px 48px 88px;
    margin: 197px 421px 0 421px;
    border-radius: 30px;
    background-color: white;
    margin: 0;
}

.signUp_headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.back_to_logIn_btn {
    display: flex;
    justify-content: flex-start;
    position: relative;
    top: 52px;
    left: -198px;
    width: 32px;
    height: 32px;
    padding: 5px 5px 5px 5px;

    &:hover {
        cursor: pointer;
        border-radius: 42px;
        background-color: #EEEEEE;    
    }
}

.signUp_content h1 {
    padding-bottom: 16px;
}

.signUp_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signUp_error {
    height: 12px;
    color: #ff8190;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    position: relative;
    margin-top: 10px;
}

.signUpCheckbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #A8A8A8;
    font-family: 'Inter', sans-serif;
    gap: 6px;
    position: relative;
    cursor: pointer;
}

.signUpCheckbox label {
    display: flex;  
}

.signUpCheckbox a:hover {
    text-decoration: underline;
}

.signUp_btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 35px;
}

#signUpBtn {
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #A8A8A8;
    background-color: #A8A8A8;
    color: white;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 15px 24px 15px 24px;
    cursor: not-allowed;
}

.signUpBtn_enabled {
    border-color: #2A3647 !important;
    background-color: #2A3647 !important;
    cursor: pointer !important;

    &:hover {
        background-color:#29ABE2 !important;
        border-color:#29ABE2 !important;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    }
}

#signUpSuccess{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    z-index: 3;
    border-radius: 20px; 
    background-color: rgba(0, 0, 0, 0.21); ;
}

#signUpSuccess button{
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #2A3647;
    background-color: #2A3647;
    color: white;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 25px;
}

#signUpCheckbox_error {
    margin-top: -22px !important;
}

#signUpBtn_overlay {
    position: absolute;
    bottom: 30px;
    left: calc(50% - 63px);
    width: 126px;
    height: 70px;
    border: unset;
    background-color: transparent;
    padding: 15px 24px 15px 24px;
    z-index: 2;
    cursor: not-allowed;
}