/* =====================================================================
   SISTEMA DE GESTIÓN DE PERSONAL - DIRECCIÓN CONJUNTA DE CIBERDEFENSA
   ESTILOS GENERALES: TEMA MILITAR CIBERNÉTICO CEOFANB
   ===================================================================== */

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

:root {
    --bg-main: #060b14;
    --bg-card: rgba(13, 22, 41, 0.88);
    --bg-card-hover: rgba(18, 30, 56, 0.95);
    --bg-input: #091224;
    --border-color: rgba(0, 210, 255, 0.2);
    --border-focus: #00d2ff;
    
    --cyber-cyan: #00d2ff;
    --cyber-cyan-glow: rgba(0, 210, 255, 0.35);
    --gold-patria: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --military-red: #c0392b;
    --military-green: #27ae60;
    
    --text-primary: #e6f1ff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-cyber: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        linear-gradient(rgba(6, 11, 20, 0.94), rgba(6, 11, 20, 0.98)),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 210, 255, 0.015) 2px, rgba(0, 210, 255, 0.015) 4px);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #070d18;
}
::-webkit-scrollbar-thumb {
    background: #1b2e50;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-cyan);
}

/* TOP CLASSIFICATION BANNER */
.classification-bar {
    background: linear-gradient(90deg, #8b0000 0%, #a00000 50%, #8b0000 100%);
    color: #ffffff;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.classification-bar a {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.3);
    padding: 2px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}
.classification-bar a:hover {
    background: #ffd700;
    color: #000;
}

/* HEADER INSTITUCIONAL */
.site-header {
    background: rgba(8, 15, 29, 0.95);
    border-bottom: 2px solid rgba(0, 210, 255, 0.25);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
}

.crest-logo {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-patria);
    box-shadow: 0 0 20px var(--gold-glow), 0 0 10px var(--cyber-cyan-glow);
    transition: transform 0.3s ease;
}
.crest-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.header-text h3 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--gold-patria);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.header-text h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    line-height: 1.2;
}

.header-text h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cyber-cyan);
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.header-badge {
    text-align: right;
    border-left: 2px solid rgba(0, 210, 255, 0.2);
    padding-left: 20px;
}
.header-badge .badge-tag {
    display: inline-block;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid var(--cyber-cyan);
    color: var(--cyber-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.header-badge p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* MAIN CONTAINER */
.main-wrapper {
    max-width: 1050px;
    margin: 35px auto 80px auto;
    padding: 0 20px;
}

/* FORM INTRO HERO */
.form-hero {
    background: linear-gradient(135deg, rgba(13, 23, 46, 0.95), rgba(7, 13, 26, 0.95));
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-cyber);
    position: relative;
    overflow: hidden;
}

.form-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-patria), var(--cyber-cyan), var(--military-red));
}

.form-hero h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.form-hero p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-instructions {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.instruction-item {
    background: rgba(0, 210, 255, 0.05);
    border: 1px dashed rgba(0, 210, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #bcd5ef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instruction-item i {
    color: var(--gold-patria);
    font-size: 1.1rem;
}

/* SECTION CARD STYLES */
.form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 26px;
    box-shadow: var(--shadow-cyber);
    backdrop-filter: blur(14px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.form-section:focus-within {
    border-color: rgba(0, 210, 255, 0.45);
    box-shadow: 0 10px 35px rgba(0, 210, 255, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.section-num {
    background: linear-gradient(135deg, var(--cyber-cyan), #0077b6);
    color: #050b14;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--cyber-cyan-glow);
    flex-shrink: 0;
}

.section-title h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.8px;
}

.section-title p {
    font-size: 0.83rem;
    color: var(--text-secondary);
}

/* GRID LAYOUTS */
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
}

.form-group.col-full {
    grid-column: 1 / -1;
}

/* LABELS & INPUTS */
label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1e2f4;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

label .required-dot {
    color: #ff5252;
    font-weight: bold;
}

.input-desc {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: -3px;
    margin-bottom: 3px;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
select,
textarea {
    background-color: var(--bg-input);
    border: 1px solid rgba(0, 210, 255, 0.22);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 12px 14px;
    outline: none;
    transition: all 0.25s ease;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: #475569;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 12px var(--cyber-cyan-glow);
    background-color: #0b162c;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

select option {
    background-color: #0d172e;
    color: #ffffff;
    padding: 10px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

/* FOTO UPLOAD BOX - MILITARY BADGE PREVIEW */
.photo-upload-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    background: rgba(0, 210, 255, 0.03);
    border: 1px dashed rgba(0, 210, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.photo-preview-box {
    width: 140px;
    height: 175px;
    border: 2px solid var(--gold-patria);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #070d1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

.photo-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.photo-preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    padding: 10px;
}

.photo-preview-placeholder i {
    font-size: 2.2rem;
    color: var(--cyber-cyan);
    margin-bottom: 8px;
}

.photo-preview-placeholder span {
    font-size: 0.72rem;
    line-height: 1.2;
}

.photo-instructions-container {
    flex: 1;
    min-width: 250px;
}

.tiuna-badge-notice {
    background: rgba(212, 175, 55, 0.12);
    border-left: 3px solid var(--gold-patria);
    padding: 10px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 12px;
}

.tiuna-badge-notice strong {
    color: #f7d057;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
    font-size: 0.88rem;
}

.tiuna-badge-notice p {
    font-size: 0.8rem;
    color: #e2e8f0;
}

.file-input-custom {
    position: relative;
    display: inline-block;
}

.btn-file-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #162a52, #0d1a33);
    border: 1px solid var(--cyber-cyan);
    color: var(--cyber-cyan);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-file-select:hover {
    background: var(--cyber-cyan);
    color: #040912;
    box-shadow: 0 0 15px var(--cyber-cyan-glow);
}

.selected-file-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 6px;
    word-break: break-all;
}

/* CV UPLOAD DROPZONE */
.cv-dropzone {
    border: 2px dashed rgba(0, 210, 255, 0.35);
    background: rgba(9, 18, 36, 0.6);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cv-dropzone:hover, .cv-dropzone.dragover {
    border-color: var(--cyber-cyan);
    background: rgba(0, 210, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
}

.cv-dropzone i {
    font-size: 2.8rem;
    color: var(--cyber-cyan);
    margin-bottom: 12px;
}

.cv-dropzone h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.cv-dropzone p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* REPEATER ITEM STYLES (TITULOS Y CURSOS) */
.repeater-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.repeater-item {
    background: rgba(8, 16, 32, 0.9);
    border: 1px solid rgba(0, 210, 255, 0.18);
    border-left: 4px solid var(--cyber-cyan);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    position: relative;
    transition: all 0.25s ease;
    animation: fadeInSlide 0.3s ease-out;
}

.repeater-item:hover {
    border-color: rgba(0, 210, 255, 0.35);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.repeater-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.repeater-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-patria);
    letter-spacing: 0.8px;
}

.btn-remove-item {
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: #ff7675;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.btn-remove-item:hover {
    background: #c0392b;
    color: #ffffff;
}

.btn-add-repeater {
    background: rgba(0, 210, 255, 0.08);
    border: 1px dashed var(--cyber-cyan);
    color: var(--cyber-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
}

.btn-add-repeater:hover {
    background: rgba(0, 210, 255, 0.18);
    box-shadow: 0 0 15px var(--cyber-cyan-glow);
}

/* CONDITIONAL CONTAINERS */
.conditional-box {
    display: none;
    margin-top: 18px;
    padding: 18px;
    background: rgba(0, 210, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: var(--radius-md);
    animation: fadeInSlide 0.3s ease-out;
}

.conditional-box.active {
    display: block;
}

/* CHECKBOXES & PILLS FOR SPECIALIZATION AREAS */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.cyber-checkbox-card {
    position: relative;
}

.cyber-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.cyber-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #091325;
    border: 1px solid rgba(0, 210, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.cyber-checkbox-card input[type="checkbox"]:checked + .cyber-checkbox-label {
    background: rgba(0, 210, 255, 0.14);
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}

.custom-box {
    width: 20px;
    height: 20px;
    border: 2px solid #4a6288;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cyber-checkbox-card input[type="checkbox"]:checked + .cyber-checkbox-label .custom-box {
    background: var(--cyber-cyan);
    border-color: var(--cyber-cyan);
    color: #040912;
}

.cyber-checkbox-label span.text {
    font-size: 0.88rem;
    font-weight: 500;
    color: #e2e8f0;
}

/* SUBMIT BUTTON & FOOTER ACTIONS */
.submit-card {
    background: linear-gradient(135deg, rgba(16, 28, 56, 0.95), rgba(8, 16, 33, 0.95));
    border: 1px solid var(--gold-patria);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    margin-top: 30px;
}

.oath-statement {
    background: rgba(0, 0, 0, 0.35);
    border-left: 3px solid var(--gold-patria);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    color: #c4d7ec;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 24px;
}

.btn-submit-cyber {
    background: linear-gradient(135deg, #d4af37 0%, #f3c242 50%, #b8972e 100%);
    color: #050b14;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 45px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 0 25px var(--gold-glow);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-submit-cyber:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(243, 194, 66, 0.6);
}

.btn-submit-cyber:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* CONFIRMATION / SUCCESS MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 14, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0c162d;
    border: 2px solid var(--cyber-cyan);
    border-radius: var(--radius-lg);
    max-width: 580px;
    width: 100%;
    padding: 35px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 210, 255, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon-success {
    width: 80px;
    height: 80px;
    background: rgba(39, 174, 96, 0.15);
    border: 2px solid var(--military-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--military-green);
    font-size: 2.5rem;
    box-shadow: 0 0 25px rgba(39, 174, 96, 0.35);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.expediente-badge {
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid var(--cyber-cyan);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    margin: 18px 0;
    display: inline-block;
}

.expediente-badge span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expediente-badge strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--cyber-cyan);
    letter-spacing: 1.5px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #172642;
    border: 1px solid #334e7a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background: #223861;
}

.btn-primary {
    background: var(--cyber-cyan);
    border: 1px solid var(--cyber-cyan);
    color: #040912;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: #38e1ff;
    box-shadow: 0 0 15px var(--cyber-cyan-glow);
}

/* ANIMATIONS */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 850px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .brand-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .header-badge {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0, 210, 255, 0.2);
        padding-top: 12px;
        width: 100%;
        text-align: center;
    }
    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr;
    }
    .form-section {
        padding: 20px 18px;
    }
}
