/* ==========================
   MinutoConta Auth
========================== */
*,
*::before,
*::after{
    box-sizing:border-box;
}
body{
    margin:0;
    background:#f5f7fb;
    font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    color:#111827;
}
.auth-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
}
.auth-card{
    width:100%;
    max-width:430px;
    background:#fff;
    border-radius:18px;
    padding:42px;
    box-shadow: 0 12px 40px rgba(15,23,42,.08);
}
.auth-header{
    text-align:center;
    margin-bottom:32px;
}
.auth-logo{
    width:68px;
    margin-bottom:18px;
}
.auth-header h1{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#2563eb;
}
.auth-header h2{
    margin:12px 0 8px;
    font-size:24px;
    font-weight:700;
}
.auth-header p{
    margin:0;
    color:#6b7280;
    line-height:1.5;
}
.form-group{
    margin-bottom:22px;
}
.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
}
.form-group input{
    width:100%;
    height:50px;
    border:1px solid #d1d5db;
    border-radius:12px;
    padding:0 16px;
    font-size:15px;
    transition:.2s;
    outline:none;
}
.form-group input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
.password-wrapper{
    position:relative;
}
.password-wrapper input{
    padding-right:55px;
}
.toggle-password{
    position:absolute;
    right:0;
    top:0;
    width:52px;
    height:50px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:18px;
    color:#6b7280;
}
.toggle-password:hover{
    color:#2563eb;
}
.remember{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
    font-size:14px;
    color:#4b5563;
}
.remember input{
    width:16px;
    height:16px;
}
.btn-login{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}
.btn-login:hover{
    background:#1d4ed8;
}
.auth-links{
    text-align:center;
    margin-top:22px;
}
.auth-links a{
    color:#2563eb;
    text-decoration:none;
    font-size:14px;
}
.auth-links a:hover{
    text-decoration:underline;
}
.auth-footer{
    margin-top:34px;
    padding-top:22px;
    border-top:1px solid #e5e7eb;
    text-align:center;
    font-size:14px;
    color:#6b7280;
}
.auth-footer a{
    display:block;
    margin-top:10px;
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
}
.auth-footer a:hover{
    text-decoration:underline;
}
.auth-alert{
    margin-bottom:22px;
    padding:14px 16px;
    border-radius:10px;
    font-size:14px;
}
.auth-alert.error{
    background:#fef2f2;
    color:#b91c1c;
    border:1px solid #fecaca;
}
.auth-alert.success{
    background:#ecfdf5;
    color:#047857;
    border:1px solid #a7f3d0;
}
@media (max-width:480px){
    .auth-card{
        padding:28px 22px;
        border-radius:14px;
    }
    .auth-header h1{
        font-size:28px;
    }
    .auth-header h2{
        font-size:22px;
    }
}


.btn-secondary{
    display:block;
    width:100%;
    margin-top:16px;
    padding:12px;
    text-align:center;
    text-decoration:none;
    border:1px solid #d1d5db;
    border-radius:12px;
    color:#374151;
    background:#fff;
    transition:.2s;
}

.btn-secondary:hover{
    background:#f9fafb;
    color:#111827;
}

