/* .auth-modal{
    width: 100%;
    height: 100dvh;
   
    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    top: 0;

    background-color: rgba(0,0,0,0.4);

    z-index: 99;


    visibility: hidden;
    opacity: 0;
    transition: visibility .3s, opacity .3s;
}

.auth-modal.active{
    visibility: visible;
    opacity: 1;
}

.auth-form{
    max-width: 500px;
    width: 90%;
    padding: 40px 20px;
    border-radius: 12px;
    background-color: #fff;

    text-align: center;
    
    position: relative;
} */

.register-form{
    display: none;
}

/* .close-modal-btn{
    position: absolute;
    top: 10px;
    right: 10px;
}

.auth-title{
    margin-bottom: 36px;
}

.inputs-wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
} */

.login-inputs-wrapper{
    margin-bottom: 36px;
}

/* .inputs-wrapper label{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inputs-wrapper label span{
    font-size: 12px;
    color: #111;
    text-align: start;
}

.auth-input, .auth-select{
    width: 100%;
}

.auth-input.error{
    border: 1px solid red;
}

.auth-select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.auth-option{
    font-size: 14px;
    color: #111;
}

.auth-option span{
    color: #4CAF50;
    text-decoration: underline;

    cursor: pointer;
} */

.signup-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-consent{
    font-size: 14px;
    color: #111;
}

.privacy-consent a{
    color: #4CAF50;
    text-decoration: underline;
}