/* Magex_RevocationM1 – Revocation Button & Form Styles */

/* ── Footer Button ── */
.magex-revocation-footer {
    display: inline-block;
    margin-top: 20px;
}

.magex-revocation-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid #c2c2c2;
    border-radius: 3px;
    color: #555;
    text-decoration: none;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.magex-revocation-btn:hover {
    border-color: #999;
    color: #222;
    text-decoration: none;
}

.magex-revocation-btn svg {
    flex-shrink: 0;
    position: relative;
    top: 2px;
}

/* ── Form Page ── */
.magex-revocation-wrapper {
    max-width: 640px;
    margin: 30px auto;
    padding: 0 15px;
}

.magex-revocation-wrapper h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.magex-revocation-intro {
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Alert */
.magex-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.magex-alert-success {
    display: block;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}

.magex-alert-error {
    display: block;
    background: #ffebee;
    border: 1px solid #ef9a9a;
    color: #c62828;
}

/* Form Fields */
.magex-revocation-form .field {
    margin-bottom: 18px;
}

.magex-revocation-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.magex-revocation-form input[type="text"],
.magex-revocation-form input[type="email"],
.magex-revocation-form textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.magex-revocation-form input:focus,
.magex-revocation-form textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.magex-revocation-form textarea {
    height: 100px;
    resize: vertical;
}

.required-mark {
    color: #cc0000;
    margin-left: 2px;
}

.optional-note {
    font-weight: normal;
    color: #888;
    font-size: 12px;
    margin-left: 4px;
}

.magex-required-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
}

/* Submit Button */
.magex-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: #68bfdb;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
	
}

.magex-submit-btn:hover {
    background: #0052a3;
}

.magex-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.magex-submit-note {
    margin-top: 14px;
    font-size: 12px;
    color: #777;
}

/* Legal Notice */
.magex-legal-notice {
    margin-top: 30px;
    padding: 12px 16px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
}
