input,
select,
textarea,
button,
a.butt {
    background-color: var(--white);
    width: 100%;
    height: 44px;
    line-height: normal;
    padding: 0 16px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

button,
a.butt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient) !important;
    color: var(--white) !important;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    text-transform: none;
    height: 44px;
    padding: 0 24px;
}

button:hover,
a.butt:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-hover) !important;
    opacity: 1 !important;
}

.button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #cbd5e1 !important;
}

input[type="checkbox"],
button,
a.butt {
    width: auto;
}

textarea {
    resize: vertical;
    min-height: 120px;
    padding: 12px 16px;
}

.other_form .form_field {
    margin-bottom: 20px;
}

.other_form .form_field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-heading);
    font-size: 14px;
}

.other_form .form_field input[type="checkbox"], .checkbox {
    display: none;
}

.other_form .form_field input[type="checkbox"] + label:before,
.checkbox + label:before {
    font-family: 'FontAwesome';
    content: "\f00c";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    color: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    transition: var(--transition);
    background: var(--white);
    vertical-align: middle;
}

.other_form .form_field input[type="checkbox"]:checked + label:before,
.checkbox:checked + label:before {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.other_form .error, .other_form .success, .other_form .alert, .info_form, .msg-warning, .msg-success, .msg-alert {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
}

.other_form .error, .msg-warning {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fee2e2;
}

.other_form .success, .msg-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
}

.other_form .alert, .info_form, .msg-alert {
    background-color: #fffbeb;
    color: #92400e;
    border: 1px solid #fef3c7;
}

.title h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-heading);
    border-bottom: 3px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
}

.title h2:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.other_form .form_field.empty_label label {
    display: none;
}

.other_form .submit_store_form_locations li {
    line-height: 35px;
}

.other_form .submit_store_form_locations li a {
    margin-right: 10px;
}

.claim_reward_form {
    margin-top: 10px;
}

.claim_reward_form .extra_form {
    display: none;
}

label {
    margin-bottom: 0;
}
