/* 1. BASE THEME & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
    min-height: 100vh;
    line-height: 1.5;
}

/* 2. LAYOUT COMPONENTS */
.glass-card { 
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    padding: 3rem;
    transition: transform 0.3s ease;
}

.glass-panel { /* For the Navigation Bar */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 3. TYPOGRAPHY & ACCENTS */
.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive sizing */
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.accent-tag, .header-accent {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #ecfdf5;
    color: #065f46;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* 4. FORM ELEMENTS (Critical Fix) */
.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.form-input {
    width: 100%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: #cbd5e1;
    font-weight: 400;
}

/* 5. INTERACTIVE ELEMENTS */
.btn-primary {
    background: #10b981;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 1.25rem;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: #059669;
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* 6. UTILITIES */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}