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

/* Root sizing: 16px = 1rem */
:root {
    font-size: 16px;
}

/* Form Container Styling */
.form-content {
    font-family: 'Inter', sans-serif;
    background-color: white;
    padding: 2rem 0;
    max-width: 50.5rem !important; /* 600px */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Ensure parent container doesn't force wider width */
.container .form-content {
    max-width: 50.5rem !important; /* 600px */
}

/* Section Box Styling */
.section-box {
    background: white;
    border: 0.0625rem solid #e5e7eb; /* 1px */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.1); /* 0 1px 3px 0 */
    transition: all 0.2s ease;
}

.section-box:hover {
    box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, 0.1), 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.06); /* 0 4px 6px -1px, 0 2px 4px -1px */
}

/* Section Header Styling */
.section-header {
    background: white;
    border-bottom: 0.125rem solid #e5e7eb; /* 2px */
    padding: 1.25rem 1.5rem; /* 20px 24px */
    margin: -0.0625rem -0.0625rem 0 -0.0625rem; /* -1px */
    border-radius: 0.5rem 0.5rem 0 0; /* 8px 8px 0 0 */
    font-weight: 600;
    font-size: 1.25rem; /* 20px */
}

/* Form Input Styling */
.form-input {
    transition: border-color 0.15s ease;
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.1875rem rgba(59, 130, 246, 0.1); /* 0 0 0 3px */
}

/* Checkbox Wrapper Styling */
.checkbox-wrapper {
    transition: background-color 0.15s ease;
    padding: 0.75rem; /* 12px */
    border-radius: 0.375rem; /* 6px */
}

.checkbox-wrapper:hover {
    background-color: #f3f4f6;
}

/* Profile Card Styling */
.profile-card {
    background: white;
    border: 0.0625rem solid #e5e7eb; /* 1px */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.1); /* 0 1px 3px 0 */
}

/* Submit Button Styling */
.submit-btn {
    background: #1f2937;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #111827;
}

/* Font Size Overrides */
/* Labels: 1rem (16px) */
.form-content label {
    font-size: 1rem !important; /* 16px */
}

/* Descriptions/Helper text: 0.875rem (14px) */
.form-content .text-sm,
.form-content p.text-sm,
.form-content .text-gray-600,
.form-content .text-gray-700.text-sm,
.form-content .italic {
    font-size: 0.875rem !important; /* 14px */
}

/* Section headers: 1.25rem (20px) */
.form-content .section-header h2 {
    font-size: 1.25rem !important; /* 20px */
}

/* Input, select, textarea: 1rem (16px) */
.form-content input,
.form-content select,
.form-content textarea {
    font-size: 1rem !important; /* 16px */
}


