.gform-danger-alert {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--danger);
    color: #000;
}

.gform-success-alert {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--success);
    color: #000;
}

.general-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ---------- LABEL ---------- */
.general-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* ---------- INPUT / SELECT / TEXTAREA ---------- */
.general-form input,
.general-form select,
.general-form textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #222;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Textarea specific */
.general-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ---------- FOCUS STATE ---------- */
.general-form input:focus,
.general-form select:focus,
.general-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(74, 163, 223, 0.25);
}

/* ---------- PLACEHOLDER ---------- */
.general-form ::placeholder {
    color: #999;
}

/* ---------- CHECKBOX & RADIO ---------- */
.general-form input[type="checkbox"],
.general-form input[type="radio"] {
    width: auto;
    margin-right: 6px;
}

/* ---------- BUTTON ---------- */
.general-form button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--primary-blue);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

/* Button hover */
.general-form button:hover {
    background-color: var(--primary-blue);
}

/* Button active */
.general-form button:active {
    transform: scale(0.98);
}

/* Button focus */
.general-form button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 163, 223, 0.4);
}

/* ---------- FORM ROW SPACING ---------- */
.general-form .form-row,
.general-form p,
.general-form div {
    margin-bottom: 16px;
}

.general-form label,
.general-form button {
    margin-top: 10px;
}