*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* STANDARD BODY */
body{
    background:#f4f6f9;
    color:#333;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #1100ffff, #ff0000ff);
    padding: 25px 20px;
    text-align: center;
    color: white;
}
header h1{
    font-size: 3rem;
}
header p{
    font-size:1.1rem;
    margin-top: 5px;
}

/* NAV */
nav {
    background: #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

nav ul li a {
    color: #fff;
    padding: 15px 18px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

nav ul li a:hover,
nav ul li a.active {
    background: #474040ff;
}

/* LOGIN LAYOUT */
.login-container{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
}

.login-card{
    background:#fff;
    width:100%;
    max-width:400px;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.login-card h2{
    text-align:center;
    margin-bottom:20px;
    color: #222222;
}

/* INPUTS */
.login-card input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:0.9rem;
}

.login-card input:focus{
    border-color:#2a5298;
    outline:none;
}

/* PASSWORD FIELD */
.password-field{
    position:relative;
}

.password-field i{
    position:absolute;
    right:15px;
    top:14px;
    cursor:pointer;
    color:#777;
    transition:transform 0.2s ease, opacity 0.2s ease;
}

.password-field i.blink{
    transform:scaleY(0.1);
    opacity:0.6;
}

/* BUTTON */
button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:25px;
    background:#2a5298;
    color:#fff;
    cursor:pointer;
    font-weight:500;
}

button:hover{
    background:#1e3c72;
}

/* ERROR */
.error{
    background:#ffe6e6;
    color:#cc0000;
    padding:10px;
    border-radius:8px;
    text-align:center;
    margin-bottom:15px;
    font-size:0.9rem;
}

/* FOOTER */
.login-footer{
    text-align:center;
    margin-top:15px;
    font-size:0.9rem;
}

.login-footer a{
    color:#2a5298;
    text-decoration:none;
}

.login-footer a:hover{
    text-decoration:underline;
}

footer{
    background:#222;
    color:#aaa;
    text-align:center;
    padding:20px;
    font-size:0.85rem;
}
