@charset "UTF-8";

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* BODY */

body{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#071739,#123a8f,#2563eb);

    padding:20px;
}

/* LOGIN CARD */

.login-wrapper{

    width:100%;

    max-width:400px;

    background:rgba(255,255,255,0.97);

    border-radius:24px;

    padding:32px 28px;

    box-shadow:0 18px 45px rgba(0,0,0,0.22);

    border:1px solid rgba(255,255,255,0.25);
}

/* LOGO */

.logo{

    text-align:center;

    margin-bottom:10px;

    font-size:42px;
}

/* HEADING */

h2{

    text-align:center;

    color:#123a8f;

    font-size:28px;

    font-weight:800;

    margin-bottom:10px;

    line-height:1.3;
}

/* SUBTITLE */

.subtitle{

    text-align:center;

    color:#64748b;

    font-size:14px;

    line-height:1.7;

    margin-bottom:24px;
}

/* FORM */

.form-group{

    margin-bottom:18px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    font-weight:700;

    color:#1e293b;
}

/* INPUT */

.form-group input{

    width:100%;

    height:52px;

    padding:0 16px;

    border:2px solid #dbe4f0;

    border-radius:12px;

    font-size:17px;

    outline:none;

    transition:0.3s;

    background:#f8fafc;
}

.form-group input:focus{

    border-color:#2563eb;

    background:#ffffff;

    box-shadow:0 0 0 4px rgba(37,99,235,0.10);
}

/* ERROR */

.error-message{

    color:#dc2626;

    background:#fee2e2;

    padding:12px;

    border-radius:10px;

    margin-bottom:16px;

    text-align:center;

    font-size:13px;

    font-weight:600;
}

/* BUTTON */

.login-btn{

    width:100%;

    height:52px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#16a34a,#22c55e);

    color:#fff;

    font-size:18px;

    font-weight:800;

    cursor:pointer;

    transition:0.3s;

    box-shadow:0 8px 18px rgba(34,197,94,0.25);
}

.login-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 22px rgba(34,197,94,0.30);
}

/* REGISTER */

.register-link{

    margin-top:18px;

    text-align:center;

    font-size:15px;

    color:#64748b;
}

.register-link a{

    color:#16a34a;

    font-weight:800;

    text-decoration:none;
}

/* BACK */

.back-home{

    margin-top:12px;

    text-align:center;
}

.back-home a{

    color:#2563eb;

    text-decoration:none;

    font-size:14px;

    font-weight:700;
}

/* GOVT BADGE */

.gov-badge{

    text-align:center;

    margin-bottom:16px;
}

.gov-badge span{

    display:inline-block;

    background:#123a8f;

    color:#fff;

    padding:7px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:0.5px;
}

/* MOBILE */

@media(max-width:768px){

    .login-wrapper{

        padding:26px 20px;

        max-width:100%;
    }

    h2{

        font-size:24px;
    }

    .logo{

        font-size:34px;
    }

    .form-group input{

        height:50px;

        font-size:16px;
    }

    .login-btn{

        height:50px;

        font-size:17px;
    }

}