/* Общие стили, которые могут понадобиться для пустых страниц */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    background: #f5f7fa;
    color: #323130;
    font-size: 14px;
    line-height: 1.4;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Стили для чекбоксов множественного выбора */
.financing-type-checkboxes,
.form-of-study-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.financing-type-checkbox-item,
.form-of-study-checkbox-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.financing-type-checkbox-item:hover,
.form-of-study-checkbox-item:hover {
    border-color: #0078d4;
    background-color: #f8f9fa;
}

.financing-type-checkbox-item input[type="checkbox"],
.form-of-study-checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.financing-type-label,
.form-of-study-label {
    cursor: pointer;
    font-weight: 500;
    color: #323130;
    flex: 1;
}

.financing-type-checkbox-item input[type="checkbox"]:checked + .financing-type-label,
.form-of-study-checkbox-item input[type="checkbox"]:checked + .form-of-study-label {
    color: #0078d4;
    font-weight: 600;
}

.financing-type-checkbox-item input[type="checkbox"]:checked,
.form-of-study-checkbox-item input[type="checkbox"]:checked {
    accent-color: #0078d4;
}

/* Стили для ошибок */
.error-message {
    color: #d13438;
    font-size: 12px;
    margin-top: 5px;
}

.has-error .field-wrapper {
    border-color: #d13438;
}

/* Стили для лейблов */
.form-label {
    font-weight: 600;
    color: #323130;
    margin-bottom: 8px;
    display: block;
} 