.scf-230-wrapper {
    width: 100%;
}

.scf-230-form {
    display: flex;
    flex-direction: column;
}

.scf-230-full-width {
    width: 100%;
    margin-bottom: 10px;
}

.scf-230-fields-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.scf-230-field-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 5px);
    min-width: 200px;
}

.scf-230-full-width {
    flex: 1 1 100%;
}

.scf-230-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.scf-230-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.scf-230-input:focus {
    outline: none;
    border-color: #555;
}

.scf-230-submit-group {
    margin-top: 5px;
    width: 100%;
}

.scf-230-button {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background-color: #055B5F;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.scf-230-button:hover {
    background-color: #034245;
}

.scf-230-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.scf-230-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    font-weight: 500;
}

.scf-230-message.success {
    display: block;
    background-color: #e6f7e6;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.scf-230-message.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}