﻿/* =========================
   FULL PAGE BACKGROUND
========================= */
body {
    min-height: 100vh;
    background: url("../images/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

    /* 🔁 DARK OVERLAY */
    body::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(6px);
        z-index: 0;
    }

/* =========================
   CENTER WRAPPER
========================= */
.login-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* 🔁 [ADDED] MOBILE PADDING */
}

/* 🔁 [ADDED] RESPONSIVE CONTAINER */
.login-container {
    width: 100%;
    max-width: 420px;
}

/* =========================
   CARD DESIGN
========================= */
.card {
    border-radius: 14px;
}

.card-header {
    background: #0d6efd;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 14px;
}

/* =========================
   FORM
========================= */
.form-control {
    padding: 12px;
    font-size: 15px;
}

/* =========================
   MOBILE ADJUSTMENTS
========================= */
@media (max-width: 576px) {

    .card-header {
        font-size: 16px;
    }

    .form-control {
        font-size: 16px; /* 🔁 iOS zoom fix */
    }
}
