/* ================================
   GLOBAL STYLES
================================ */
body {
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
    color: #212529;
    line-height: 1.6;

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* ================================
   LOGIN CONTAINER
================================ */
.login-container {
    max-width: 450px;
    width: 100%;
    background: #ffffff;
    border-radius: 1.2rem;
    box-shadow: 0 12px 30px rgba(90, 43, 216, 0.18);
    border-top: 6px solid #9b5cff;
}

/* ================================
   LOGO & HEADER
================================ */
.login-container img {
    display: block;
    margin: 0 auto 10px;
}

.login-container h2 {
    color: #5a2bd8;
    font-weight: 800;
    text-align: center;
}

/* ================================
   NAV TABS
================================ */
.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    transition: all 0.25s ease;
}

.nav-tabs .nav-link.active {
    color: #5a2bd8;
    border-bottom: 3px solid #9b5cff;
    background: transparent;
}

.nav-tabs .nav-link:hover {
    color: #9b5cff;
}

/* ================================
   FORM ELEMENTS
================================ */
.form-label {
    font-weight: 600;
    color: #5a2bd8;
}

.form-control {
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
}

.form-control:focus {
    border-color: #9b5cff;
    box-shadow: 0 0 0 0.2rem rgba(155, 92, 255, 0.25);
}

/* ================================
   PRIMARY BUTTON
================================ */
.btn-primary {
    background: linear-gradient(180deg, #9b5cff, #5a2bd8);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    padding: 0.65rem;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(90, 43, 216, 0.35);
    filter: brightness(1.05);
}

/* ================================
   TEXT UTILITIES
================================ */
.text-muted.small {
    font-size: 0.875rem;
    color: #6c757d;
}

/* ================================
   REGISTER LINK (PINK ACCENT)
================================ */
.register-link {
    color: rgba(236, 72, 153, 0.85);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.register-link:hover {
    color: #ec4899;
    text-decoration: none;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 576px) {
    .login-container {
        padding: 2rem 1.5rem;
    }

    .nav-tabs .nav-link {
        font-size: 0.9rem;
    }
}
/* ================================
   COMPANY LOGO (LOGIN FOOTER)
================================ */
.company-logo {
    max-width: 300px;
    opacity: 0.85;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}
/* ================================
   LOGIN FOOTER
================================ */
.login-footer {
    margin-top: 12px;
}

.copyright-text {
    margin-top: 6px;
    font-size: 0.75rem;
    color: #9ca3af;
    letter-spacing: 0.3px;
}
