.custom-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.custom-form-description {
    margin-bottom: 20px;
    padding: 15px;
    background: #f0f0f1;
    border-radius: 4px;
}

.custom-form-field {
    margin-bottom: 20px;
}

.custom-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.custom-form-field .required {
    color: #d63638;
}

.custom-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
}

.custom-form-input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.custom-form-radio-group,
.custom-form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-form-radio-label,
.custom-form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.custom-form-error {
    display: block;
    color: #d63638;
    font-size: 12px;
    margin-top: 5px;
}

.custom-form-submit {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.custom-form-submit:hover {
    background: #135e96;
}

.custom-form-submit:disabled {
    background: #8c8f94;
    cursor: not-allowed;
}

.custom-form-messages {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}

.custom-form-messages.error {
    background: #fcf0f1;
    color: #d63638;
    border: 1px solid #d63638;
}

.custom-form-messages.success {
    background: #f0f6fc;
    color: #2271b1;
    border: 1px solid #2271b1;
}

.custom-form-success {
    padding: 20px;
    background: #f0f6fc;
    border: 1px solid #2271b1;
    border-radius: 4px;
    color: #2271b1;
    text-align: center;
}


