/* Контейнер формы */
.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

/* Кастомные лейблы */
.control-label-custom {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 10px;
    margin-left: 5px;
}

/* Кастомные инпуты и селекты */
.custom-control-styled {
    width: 100% !important;
    height: 54px !important;
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
    color: #1f2937 !important;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.custom-control-styled:focus {
    border-color: #4f46e5 !important;
    background-color: #ffffff !important;
    outline: none;
}

/* Кнопка отправки */
.btn-submit-custom {
    width: 100%;
    height: 56px;
    background: #4f46e5;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    transition: background 0.2s ease;
}

.btn-submit-custom:hover {
    background: #4338ca;
}

/* Окно описания */
.description-box {
    padding: 15px;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* Утилиты */
.space-y-6 > * + * {
    margin-top: 24px;
}