.auth-section {
    min-height: calc(100vh - 120px); /* adjust if needed */
    padding: 15px 0;
    background: #f5f7fb;
}

.auth-wrapper {
    max-width: 950px;
}

.auth-card {
    border-radius: 12px;
    overflow: hidden;
}

/* Right side (info panel) */
.auth-info {
    background: linear-gradient(135deg, #0d2a52, #123d7a);
    color: #fff;
}

.auth-title {
    color: #d4af37; /* gold */
    font-weight: 600;
}

/* Gold button */
.btn-gold {
    background-color: #d4af37;
    border: none;
    color: #000;
    font-weight: 500;
}

.btn-gold:hover {
    background-color: #c19b2e;
}


/* Full background */
.admin-auth {
    min-height: calc(80vh - 180px); /* adjust if header/footer present */
    padding: 15px 0;
    background: #f5f7fb;
}

/* Card styling */
.admin-card {
    border: none;
    border-radius: 12px;
}

/* Inputs cleaner */
.form-control {
    height: 45px;
    border-radius: 6px;
}

.legal-section {
    background: #f8f9fb;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.legal-wrapper h1 {
    font-weight: 600;
}

.legal-wrapper h5 {
    margin-top: 25px;
    font-weight: 600;
}

.legal-wrapper p {
    color: #444;
    line-height: 1.7;
}

/* Main footer background */
.footer-section {
    background: linear-gradient(135deg, #0d2a52, #0a1f3d);
    color: #ffffff;
}

/* Titles (gold) */
.footer-title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Body text */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #dcdcdc;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* Hover effect (gold like your image) */
.footer-links a:hover {
    color: #d4af37;
    padding-left: 4px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
}

/* Mobile spacing fix */
@media (max-width: 991px) {
    .auth-card {
        border-radius: 10px;
    }

    .auth-info {
        text-align: center;
    }
}