.auth-container{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:120px 20px 40px;

}

.auth-card{

    width:100%;

    max-width:520px;

    background:rgba(18,24,39,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:40px;

    text-align:center;

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);

}

.logo-auth{

    width:100px;

    height:100px;

    object-fit:contain;

    margin-bottom:16px;

    filter:
        drop-shadow(
            0 0 12px rgba(217,191,105,.15)
        );

}

.auth-brand{

    display:block;

    color:#d9bf69;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:12px;

}

.auth-card h1{

    color:white;

    margin-bottom:12px;

    font-size:32px;

}

.auth-subtitle{

    color:rgba(255,255,255,.65);

    line-height:1.7;

    margin-bottom:30px;

}

.auth-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.input-group{

    text-align:left;

}

.input-group label{

    display:block;

    color:white;

    margin-bottom:8px;

    font-size:14px;

}

.input-group input{

    width:100%;

    padding:14px 16px;

    border:none;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    font-size:15px;

    box-sizing:border-box;

}

.input-group input:focus{

    outline:none;

    border-color:#d9bf69;

}

.boton-auth{

    margin-top:10px;

    border:none;

    border-radius:16px;

    padding:16px;

    background:#d9bf69;

    color:#121827;

    font-weight:700;

    font-size:15px;

    cursor:pointer;

    transition:.2s;

}

.boton-auth:hover{

    transform:translateY(-2px);

}

.auth-footer{

    margin-top:25px;

    color:rgba(255,255,255,.65);

}

.auth-footer a{

    color:#d9bf69;

    text-decoration:none;

    font-weight:600;

}
