/* Glassmorphism background for the main app container */
#home-page-container {
    background-image: url('/assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Glass card styling suited for light background */
.glass-card {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05) !important;
    border-radius: 0px !important;
    color: #1a1e23 !important;
    overflow: hidden;
}

/* Clean text overlay on glass */
.glass-card h2,
.glass-card h4,
.glass-card h5,
.glass-card p,
.glass-card div {
    /* Ensuring readability */
    color: #1a1e23;
}

/* Ensure the note text is visible but understated */
.glass-note {
    color: #4a5568 !important;
    font-weight: 500;
}

/* Enhancing inputs for glass effect */
.glass-card input {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
    color: #1a1e23 !important;
    border-radius: 10px;
}

.glass-card input:focus {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.2) !important;
}

/* Sleeker login buttons */
.glass-card .btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    border-radius: 10px;
}

.glass-card .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4) !important;
}

.glass-card .btn-secondary {
    background: rgba(108, 117, 125, 0.2) !important;
    color: #1a1e23 !important;
    border: 1px solid rgba(108, 117, 125, 0.4) !important;
    transition: all 0.2s ease !important;
    border-radius: 10px;
    font-weight: 500;
}

.glass-card .btn-secondary:hover {
    background: rgba(108, 117, 125, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.2) !important;
}

/* Refine Accordion for light theme */
.accordion-item,
.accordion-button {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #1a1e23 !important;
}

.accordion-body {
    color: #333 !important;
}

/* Adjust Welcome text to ensure it's visible on the background */
#welcome-msg {
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    font-weight: bold;
    color: #1a1e23;
}