/* Общие стили формы */
.crf-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

.crf-form label {
    display: block;
    margin-bottom: 15px;
    color: #333;
}

.crf-form select,
.crf-form input[type="text"],
.crf-form input[type="email"],
.crf-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color .3s;
}

.crf-form select:focus,
.crf-form input:focus,
.crf-form textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.crf-form button {
    display: inline-block;
    padding: 14px 28px;
    margin-top: 10px;
    background-color: #0066cc;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background‐color .3s;
}

.crf-form button:hover {
    background-color: #0055aa;
}

#crf_message {
    margin-top: 20px;
    padding: 10px;
    background-color: #e8f4ff;
    color: #003366;
    border-radius: 4px;
    display: none;
}

/* Поля в рядок (для двух полей рядом) */
.crf-form .crf-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.crf-form .crf-row > label {
    flex: 1 1 48%;
}

/* Мобильная адаптивность */
@media (max-width: 480px) {
    .crf-form .crf-row {
        display: block;
    }
    .crf-form .crf-row > label {
        flex: 1 1 100%;
    }
}
