body {
    font-family: 'Poppins', sans-serif;
}

.login-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 40px 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    color: #fff;
}

.login-card h3 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.login-card p {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 12px;
    padding: 14px 16px;
    border: none;
}

.form-control:focus {
    box-shadow: 0 0 0 2px #ff9f43;
}

.btn-login {
    background: linear-gradient(135deg, #ff512f, #f09819);
    border: none;
    padding: 14px;
    font-size: 17px;
    border-radius: 30px;
    color: #fff;
    transition: 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.login-footer a {
    color: #ffd369;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}
