@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
}

/* Glassmorphism Auth Cards */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.auth-header {
    text-align: center;
    padding-bottom: 2rem;
}

.auth-header h2 {
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6c757d;
    font-weight: 300;
}

.auth-left-panel {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.auth-left-panel h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-form-panel {
    padding: 3rem;
    background: white;
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #fff;
    border-color: #4facfe;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
}

.form-label {
    font-weight: 500;
    color: #4a5568;
}

/* Custom Checkbox */
.form-check-input:checked {
    background-color: #4facfe;
    border-color: #4facfe;
}

/* Dashboard Styles */
.dashboard-navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f1f5f9;
}

.dashboard-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: #2d3748;
}

.dashboard-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card .card-header {
    background: transparent;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.dashboard-card .card-body {
    padding: 1.5rem;
}
