
/* =========================
   GLOBAL
========================= */
body {
    font-family: Helvetica, sans-serif;
    margin: 0;
}

/* =========================
   BACKGROUND VIDEO
========================= */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* dark overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

/* =========================
   FORM CONTAINER
========================= */
.form-container {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
}

/* =========================
   HEADER
========================= */
.form-header {
    background-color: #072956;
    color: white;
    padding: 15px;
    text-align: center;
}

.form-header h5 {
    margin: 0;
}

/* =========================
   BODY
========================= */
.form-body {
    padding: 30px;
}

.form-body label {
    color: #072956;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* =========================
   INPUT GROUP
========================= */
.input-group-text {
    background: #fff;
    cursor: pointer;
}

.input-group-text i {
    color: #072956;
}

/* hover effect */
.input-group-text:hover {
    background-color: #f2f2f2;
}

/* =========================
   FORM CONTROL
========================= */
.form-control {
    border-left: none;
}

/* =========================
   BUTTON
========================= */
.btn-custom {
    background-color: #072956;
    color: white;
    border-radius: 20px;
    border: 2px solid #072956;
    padding: 8px 30px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: white;
    color: #072956;
}

/* =========================
   FOOTER LINK
========================= */
.footer-link {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.footer-link a {
    color: #072956;
    text-decoration: none;
}

.footer-link a:hover {
    text-decoration: underline;
}

/* =========================
   ERROR BOX (JS CONTROLLED)
========================= */
#loginError {
    font-size: 14px;
    margin-bottom: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 576px) {

    .form-container {
        max-width: 100%;
        border-radius: 15px;
    }

    .form-body {
        padding: 20px;
    }

    .form-header {
        padding: 12px;
    }

    .form-header h5 {
        font-size: 1rem;
    }

    .btn-custom {
        width: 100%;
        padding: 10px;
    }

    .footer-link {
        font-size: 12px;
    }
}