/* PINNATION IAS Professional Theme */
body { 
    background: #f4f7f9; 
    font-family: 'Poppins', sans-serif; 
    min-height: 100vh; 
    margin: 0;
}

.login-card { 
    width: 100%; 
    max-width: 420px; 
    margin: 60px auto; 
    background: #fff; 
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    overflow: hidden; 
    border-top: 5px solid #b08d3e; /* Gold/Brass accent */
}

.login-header { 
    background: #ffffff; 
    color: #1a202c; 
    padding: 35px 25px 20px 25px; 
    text-align: center; 
}

.login-header h2 {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin: 0;
    color: #005fa9; /* Pinnation Blue */
}

.login-header h2 span {
    color: #b08d3e; /* Pinnation Gold */
}

.login-header p {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 8px;
}

.login-body { 
    padding: 20px 40px 40px 40px; 
}

.form-group label {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding-left: 15px;
}

.form-control:focus {
    border-color: #005fa9;
    box-shadow: 0 0 0 3px rgba(0, 95, 169, 0.1);
}

.login-button { 
    background: #005fa9; 
    color: white; 
    border-radius: 10px; 
    padding: 14px; 
    width: 100%; 
    border: none; 
    font-weight: 600; 
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.login-button:hover {
    background: #004a85;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 95, 169, 0.2);
}

.password-container { 
    position: relative; 
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a0aec0;
    z-index: 10;
}

.footer-links {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
}

.footer-links a {
    color: #005fa9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #b08d3e;
}