/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== BACKGROUND ===== */
.bg-gradient {
    background: linear-gradient(135deg, #1d2671, #c33764);
    min-height: 100vh;
}

/* ===== LOGIN CARD ===== */
.animated-card {
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
    background: #ffffff;
    animation: slideFade 0.8s ease forwards;
}

/* ===== ANIMATION ===== */
@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HEADINGS ===== */
.animated-card h3 {
    font-weight: 600;
    color: #333;
}

/* ===== INPUTS ===== */
.form-control {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

/* ===== BUTTON ===== */
.btn-primary {
    border-radius: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #6f42c1, #4e2ba3);
    border: none;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: #6f42c1;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    .animated-card {
        padding: 25px 20px;
    }
}
