/* ============================================================
   GLOBAL — DARK THEME LOGIN
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #0b1224, #1b213a);
    color: #ffffff;
}

/* ============================================================
   LOGIN WRAPPER
   ============================================================ */
.login-container {
    width: 100%;
    max-width: 380px;
    padding: 30px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LOGO
   ============================================================ */
.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo img {
    width: 130px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
}

/* ============================================================
   FORM
   ============================================================ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #e6e6e6;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 10px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;

    transition: 0.25s ease;
}

.form-group input:focus {
    border-color: #6fb4ff;
    box-shadow: 0 0 5px rgba(111,180,255,0.5);
    outline: none;
}

/* ============================================================
   PASSWORD TOGGLE
   ============================================================ */
.password-field {
    position: relative;
}

.password-field .toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #cfcfcf;
    opacity: 0.6;
    transition: 0.2s;
}

.password-field .toggle:hover {
    opacity: 1;
}

/* ============================================================
   BUTTON LOGIN
   ============================================================ */
.btn-login {
    width: 100%;
    padding: 12px;
    background: #3e6df8;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
    margin-top: 5px;
}

.btn-login:hover {
    background: #507dff;
    box-shadow: 0 4px 15px rgba(80,125,255,0.35);
}

/* ============================================================
   REGISTER LINK
   ============================================================ */
.register-link {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: #dcdcdc;
}

.register-link a {
    color: #8fc1ff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}
.forgot-password {
    text-align: center;
    margin-top: 10px;
}

.forgot-password a {
    color: #ff69b4; /* pink */
    text-decoration: none;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}
