/* ================= LOGIN CONTAINER ================= */

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 20% 20%, #1e293b, #0f172a 60%);
    padding: 20px;
}

/* ================= LOGIN CARD ================= */

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 45px 40px;
    border-radius: 22px;
    backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 
        0 0 60px rgba(99,102,241,0.15),
        0 0 100px rgba(0,0,0,0.6);
    animation: fadeIn 0.8s ease-in-out;
    transition: 0.4s ease;
}

.login-card:hover {
    transform: translateY(-4px);
}

/* ================= LOGO SECTION ================= */

.logo-section {
    text-align: center;
    margin-bottom: 35px;
}

.logo-section img {
    width: 85px;
    margin-bottom: 15px;
}

.logo-section h2 {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.logo-section p {
    font-size: 13px;
    opacity: 0.6;
}

/* ================= FORM ================= */

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.7;
    font-weight: 500;
}

/* ================= INPUTS ================= */

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    outline: none;
    background: #1e293b;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Remove ugly default select arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Custom dropdown arrow */
.form-group::after {
    content: "▾";
    position: absolute;
    right: 15px;
    top: 42px;
    font-size: 14px;
    color: #94a3b8;
    pointer-events: none;
}

/* Focus Effects */

.form-group input:focus,
.form-group select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.25);
    background: #162033;
}

/* Hover */

.form-group input:hover,
.form-group select:hover {
    border-color: rgba(255,255,255,0.2);
}

/* ================= LOGIN BUTTON ================= */

.login-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    color: #fff;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99,102,241,0.35);
}

.login-btn:active {
    transform: scale(0.97);
}

/* ================= ANIMATION ================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 480px) {

    .login-card {
        padding: 30px 25px;
        border-radius: 18px;
    }

    .logo-section img {
        width: 70px;
    }

    .logo-section h2 {
        font-size: 18px;
    }
}