body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
}

/* Glass Card */
.login-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    padding: 35px;
    width: 100%;
    max-width: 420px;
    color: white;
}

.login-card h3 {
    font-weight: 700;
    text-align: center;
}

.form-control {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    border-radius: 10px;
}

.form-control::placeholder {
    color: #ddd;
}

.form-control:focus {
    background: rgba(255,255,255,0.25);
    color: white;
    box-shadow: none;
}

.btn-login {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    padding: 12px;
    transition: 0.3s ease;
}

.btn-login:hover {
    transform: scale(1.05);
}

.link-text {
    color: #ffccd5;
    text-decoration: none;
}

.link-text:hover {
    text-decoration: underline;
}
