
/* Login page specific styles */
.login-container {
    max-width: 28rem;
    width: 100%;
}

#login-error {
    transition: all 0.3s ease;
}

/* Shared styles across all pages */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
}
/* Active link style */
.active-link {
    color: #f59e0b !important;
    font-weight: 600 !important;
}
.active-link::after {
    width: 100% !important;
    background-color: #f59e0b !important;
}
/* Button styles */
.btn {
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
}
.btn-primary {
    background-color: #1d4ed8;
    color: white;
}
.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

/* Card styles */
.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Section spacing */
section {
    padding: 5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: block;
    }
}

/* Form elements */
.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #334155;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
    border-color: #93c5fd;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.5);
}
