/* Recall Alert — Subscription Form Styles */

.ra-form-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 0;
}

.ra-form-message {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
    font-weight: 500;
}

.ra-form-message.ra-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.ra-form-message.ra-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.ra-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ra-field {
    width: 100%;
}

.ra-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.ra-input:focus {
    outline: none;
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.ra-input::placeholder {
    color: #aaa;
}

.ra-btn {
    width: 100%;
    padding: 12px;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.3px;
}

.ra-btn:hover {
    background: #a93226;
}

.ra-btn:active {
    transform: scale(0.98);
}

.ra-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.ra-fine-print {
    margin: 4px 0 0;
    color: #999;
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
}
