/* ===========================
   General Page Styles
=========================== */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f5f5, #e8f0fe);
    min-height: 100vh;
    margin: 0;
}

/* ===========================
   Navbar
=========================== */
.navbar {
    background-color: #005a2b; /* Deep green */
}

.navbar-brand {
    font-weight: 600;
    color: #ffd700 !important; /* Ghana gold */
    letter-spacing: 0.5px;
}

/* ===========================
   Card Styles (Login/Signup Box)
=========================== */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #005a2b;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-header h4 {
    margin: 0;
    font-weight: 600;
}

/* ===========================
   Form Elements
=========================== */
.form-label {
    font-weight: 500;
    color: #333;
}

.form-control {
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #005a2b;
    box-shadow: 0 0 0 0.2rem rgba(0, 90, 43, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
}

/* ===========================
   Buttons
=========================== */
.btn-primary {
    background-color: #005a2b;
    border: none;
    padding: 10px 0;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #007f3b;
}

/* ===========================
   Links
=========================== */
a {
    color: #005a2b;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #007f3b;
    text-decoration: underline;
}

/* ===========================
   Notification
=========================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffd700;
    color: #000;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
}

/* ===========================
   Loading Spinner
=========================== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
}

.loading-spinner p {
    font-weight: 500;
    color: #005a2b;
}

/* ===========================
   Responsive Design
=========================== */
@media (max-width: 768px) {
    .card {
        margin: 0 10px;
    }

    .navbar-brand {
        font-size: 1rem;
    }
}
