/* Общие стили: Светлый фон для легкости + Моноширинный шрифт */
body { 
    background: #f4efe0; /* Цвет старой бумаги / бежевый */
    color: #333; 
    font-family: 'Courier New', Courier, monospace; /* Шрифт старого терминала */
    padding: 20px 40px;
    text-align: center;
}
h2 { 
    color: #b85c00; /* Более глубокий янтарный */
    margin-bottom: 10px; 
    margin-top: 10px; 
    letter-spacing: 1px; /* Эффект печатной машинки */
}
p { 
    color: #666; 
    font-size: 14px; 
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ДВУХКОЛОНОЧНАЯ СЕТКА */
.grid-2col {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 20px auto;
}
.grid-column {
    flex: 1;
    min-width: 300px;
    background: #fff; /* Белый лист внутри колонки */
    padding: 25px;
    border: 1px solid #dcdad1; /* Мягкая рамка вместо черной */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Легкая тень */
    box-sizing: border-box;
}

/* Элементы форм */
.form-group { 
    margin-bottom: 20px; 
    border-bottom: none; /* Убрали черную линию внизу */
    padding-bottom: 0; 
    text-align: left;
}
label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: bold; 
    color: #b85c00; 
    font-size: 14px; 
    text-transform: uppercase; /* Мелочь, но добавляет олдскула */
    letter-spacing: 0.5px;
}
input[type="file"], select { 
    background: #fafafa; /* Почти белый, чуть серее */
    color: #333; 
    border: 1px solid #ccc; /* Серый контур */
    padding: 10px; 
    width: 100%; 
    box-sizing: border-box;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
}

/* Специфичный блок для чекбокса */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    background: #fdfbf7; /* Очень светлый крафт */
    padding: 12px 15px;
    border-left: 4px solid #b85c00;
    border-radius: 0 6px 6px 0;
    border: 1px solid #e5e0d5;
}
.checkbox-container input { 
    width: 18px; 
    height: 18px; 
    cursor: pointer; 
    accent-color: #b85c00; 
    margin: 0; 
}
.checkbox-container label { 
    color: #555; 
    margin: 0; 
    cursor: pointer; 
    user-select: none; 
    font-weight: normal;
}

/* Кнопки — стиль выпуклой пластиковой кнопки PC */
.btn { 
    background: linear-gradient(to bottom, #ffeab6 0%, #d9a51e 100%); /* Имитация пластика */
    color: #000; 
    font-weight: bold; 
    padding: 12px 30px; 
    border: 2px solid #8b6b15; /* Темная кромка */
    border-radius: 3px;
    cursor: pointer; 
    font-size: 16px; 
    text-decoration: none;
    display: inline-block;
    transition: transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 2px 0 #8b6b15, 0 4px 10px rgba(0,0,0,0.1); /* Объем */
    position: relative;
    top: 0;
}
.btn:hover { 
    background: linear-gradient(to bottom, #ffefca 0%, #e6b85c 100%);
    top: -1px;
    box-shadow: 0 3px 0 #8b6b15, 0 5px 12px rgba(0,0,0,0.15);
}
.btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #8b6b15, 0 2px 5px rgba(0,0,0,0.2);
    top: 1px;
}

.card-panel {
    background: #fff; 
    padding: 20px; 
    border: 1px solid #ddd; 
    max-width: 500px; 
    margin: 20px auto; 
    border-radius: 6px;
}
.loading { 
    display: none; 
    color: #b85c00; 
    font-weight: bold; 
    margin-top: 15px; 
    font-size: 15px;
    font-style: italic;
}
