/* ===============================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

/* ===============================
   BACKGROUND (DARK CINEMATIC)
================================ */
.login-bg {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(0,0,0,0.35) 0%,
            rgba(0,0,0,0.65) 55%,
            rgba(0,0,0,0.85) 100%
        ),
        url("/images/login-bgs.jpg") no-repeat center center;

    background-size: cover;
}

/* ===============================
   LOGIN CARD
================================ */
.form-signin {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 42px 36px;
}

/* ===============================
   TITLE
================================ */
.login-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
}

.login-tagline {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    margin-bottom: 30px;
}

/* ===============================
   INPUT FIELDS (SIMPLE)
================================ */
.form-control {
    width: 100%;
    height: 60px;              /* 🔥 height bada */
    border-radius: 16px;       /* smooth rounded */
    border: 1px solid #a9a9a9;
    padding: 0 18px;           /* left-right space */
    font-size: 16px;           /* text thoda bada */
    background: #fff;
}

/* placeholder thoda clean */
.form-control::placeholder {
    color: #444;
    font-weight: 500;
}

/* focus effect soft */
.form-control:focus {
    border-color: #bfa46a;
    box-shadow: none;
}


/* floating label disable */
.form-floating > label {
    display: none;
}

/* ===============================
   CHECKBOX & LINKS
================================ */
.form-check-input {
    border-radius: 4px;
}

.form-check-label {
    font-size: 14px;
    color: #333;
}

.text-grey-900 {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.text-grey-900:hover {
    text-decoration: underline;
}

/* ===============================
   LOGIN BUTTON
================================ */
.btn-prime {
    width: 100%;          /* 🔥 full width */
    display: block;
    background: #d6b77b;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px;        /* height feel */
    border: none;
    margin-top: 18px;
}

.btn-prime:hover {
    background: #c9aa6f;
}


.login-error-top {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 320px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 6px;
}



/* ===============================
   MOBILE
================================ */
@media (max-width: 480px) {
    .form-signin {
        padding: 32px 24px;
    }
}

.logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;
    margin-bottom: 30px;
}

.logo-wrap img {
    max-width: 90px;
    display: block;
}


.remember-row {
    display: flex;
    justify-content: space-between; /* 🔥 left–right */
    align-items: center;
    margin: 16px 0 20px;
}

.remember-row .form-check {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check-input {
    margin-top: 0;
}

.text-grey-900 {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.text-grey-900:hover {
    text-decoration: underline;
}

