/* Centered Container */
.container {
    min-height: 100vh;
}

/* Card Styling */
.card {
    border-radius: 12px;
    border: none;
}

.card-header {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Input Fields */
.form-control {
    border-radius: 8px;
    padding: 10px;
}

/* Buttons */
.btn {
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #004085;
}

/* Fullscreen Hero Section */
.hero {
    height: 100vh;
    background: url('/assets/images/admin-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: auto;
}

/* Navbar Styling */
.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

/* Buttons */
.btn {
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #dc3545;
    border: none;
}

.btn-primary:hover {
    background-color: #a71d2a;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #000;
}

/* Footer */
footer {
    background: #343a40;
    padding: 20px;
    margin-top: 50px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
    }

    .hero {
        padding: 2rem;
    }
}