/**
 * Public Styles - Professional Design
 *
 * @package Transmute_Engine_Trial_Seresa
 */

/* ========================================
   Base Typography & Colors
======================================== */
:root {
    --seresa-primary: #1b1f3c;
    --seresa-secondary: #6366f1;
    --seresa-success: #10b981;
    --seresa-error: #ef4444;
    --seresa-warning: #f59e0b;
    --seresa-light-bg: #f8fafc;
    --seresa-border: #e2e8f0;
    --seresa-text-primary: #1b1f3c;
    --seresa-text-secondary: #64748b;
}

/* ========================================
   Form Wrapper
======================================== */
.seresa-trial-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ========================================
   Form Container
======================================== */
.seresa-trial-form {
    background: #ffffff;
    padding: 28px 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--seresa-border);
}

/* ========================================
   Form Layout
======================================== */
.seresa-trial-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

/* Remove margin-bottom from form groups inside rows to prevent double spacing */
.seresa-trial-form-row .seresa-trial-form-group {
    margin-bottom: 0;
}

.seresa-trial-form-half {
    flex: 1;
}

/* ========================================
   Form Groups
======================================== */
.seresa-trial-form-group {
    margin-bottom: 24px;
}

/* Remove margin from last form group (submit button) for equal top/bottom spacing */
.seresa-trial-form-group:last-of-type {
    margin-bottom: 0;
}

.seresa-trial-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--seresa-text-primary);
    font-size: 15px;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.01em;
}

.seresa-trial-form-group label .required {
    color: var(--seresa-error);
    margin-left: 3px;
    font-weight: 700;
}

/* ========================================
   Form Inputs
======================================== */
.seresa-trial-input,
.seresa-trial-select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--seresa-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--seresa-text-primary);
    transition: all 0.2s ease;
    box-sizing: border-box;
    background-color: #ffffff;
    line-height: 1.5;
}

.seresa-trial-input:focus,
.seresa-trial-select:focus {
    outline: none;
    border-color: var(--seresa-secondary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.seresa-trial-input::placeholder {
    color: #94a3b8;
}

.seresa-trial-input.error,
.seresa-trial-select.error {
    border-color: var(--seresa-error);
    background-color: #fef2f2;
}

.seresa-trial-input.error:focus,
.seresa-trial-select.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.seresa-trial-checkbox-input.error {
    outline: 2px solid var(--seresa-error);
    outline-offset: 2px;
}

/* ========================================
   Error Messages (Field Validation)
======================================== */
.seresa-trial-form-group .seresa-trial-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--seresa-error);
    font-size: 13px;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-top: 8px;
    font-weight: 500;
}

/* ========================================
   Checkbox (Terms of Service)
======================================== */
.seresa-trial-checkbox-wrapper {
    margin-top: 4px;
}

.seresa-trial-form .seresa-trial-checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 14px !important;
    color: var(--seresa-text-secondary) !important;
    line-height: 1.4 !important;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
}

.seresa-trial-form .seresa-trial-checkbox-input {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    margin-top: 1px !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    accent-color: var(--seresa-secondary);
    cursor: pointer;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
}

.seresa-trial-form .seresa-trial-checkbox-label span {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.seresa-trial-checkbox-text {
    color: var(--seresa-text-secondary);
    font-size: 14px;
    line-height: 1.4;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.seresa-trial-checkbox-text .required {
    color: var(--seresa-error);
    margin-left: 2px;
}

/* ========================================
   Submit Button
======================================== */
.seresa-trial-submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--seresa-secondary) 0%, #4f46e5 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.seresa-trial-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.seresa-trial-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.seresa-trial-submit-btn:disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* ========================================
   Button Spinner
======================================== */
.seresa-trial-btn-spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: seresa-spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes seresa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   Form Messages
======================================== */
.seresa-trial-form-message {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

.seresa-trial-form-message.success {
    background-color: #f0fdf4;
    color: #15803d;
    border: 2px solid #bbf7d0;
}

.seresa-trial-form-message.error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 2px solid #fecaca;
}

.seresa-trial-form-message.loading {
    background-color: #f0f9ff;
    color: #0369a1;
    border: 2px solid #bae6fd;
}

/* ========================================
   Success Message with Resend Button
======================================== */
.seresa-trial-form-message.success {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}

.seresa-trial-message-text {
    flex: 0 0 100%;
}

.seresa-trial-resend-btn {
    padding: 8px 16px;
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
    margin-top: 4px;
}

.seresa-trial-resend-btn:hover:not(:disabled) {
    background: #0ea5e9;
    color: #ffffff;
}

.seresa-trial-resend-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .seresa-trial-resend-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Verification Page
======================================== */
.seresa-trial-verification {
    max-width: 680px;
    margin: 60px auto;
    padding: 20px;
}

.seresa-trial-loading {
    text-align: center;
    padding: 80px 20px;
}

.seresa-trial-spinner {
    border: 5px solid #f1f5f9;
    border-top: 5px solid var(--seresa-secondary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.seresa-trial-message {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--seresa-border);
    text-align: center;
    display: block;
}

.seresa-trial-message h2 {
    margin: 0 0 16px 0;
    color: var(--seresa-text-primary);
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.02em;
    display: block;
    width: 100%;
}

.seresa-trial-message p {
    color: var(--seresa-text-secondary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
    display: block;
    width: 100%;
}

.seresa-trial-message.seresa-trial-error {
    border-left: 6px solid var(--seresa-error);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.seresa-trial-message.seresa-trial-error h2 {
    color: var(--seresa-error);
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.seresa-trial-message.seresa-trial-error p {
    color: #991b1b;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
    display: block;
    clear: both;
}

.seresa-trial-message.seresa-trial-error p small {
    display: block;
    margin-top: 16px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: #7f1d1d;
    font-family: "Courier New", monospace;
    word-break: break-word;
    line-height: 1.5;
}

.seresa-trial-message.seresa-trial-success {
    background: #ffffff;
    border: 1px solid var(--seresa-border);
    border-left: none;
}

.seresa-trial-message.seresa-trial-warning {
    border-left: 6px solid var(--seresa-warning);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.seresa-trial-message.seresa-trial-warning h2 {
    color: #92400e;
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.seresa-trial-message.seresa-trial-warning > p {
    color: #78350f;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    display: block;
    clear: both;
}

.seresa-trial-message.seresa-trial-warning p strong {
    color: #78350f;
}

.seresa-trial-message.seresa-trial-success h2 {
    color: var(--seresa-text-primary);
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.seresa-trial-message.seresa-trial-success > p {
    color: var(--seresa-text-secondary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    display: block;
    clear: both;
}

.seresa-trial-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--seresa-secondary) 0%, #4f46e5 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 24px;
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.seresa-trial-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

/* ========================================
   Welcome Page
======================================== */
.seresa-trial-welcome {
    max-width: 880px;
    margin: 60px auto;
    padding: 20px;
}

.seresa-trial-success-message {
    text-align: center;
    margin-bottom: 48px;
}

.seresa-trial-success-message h1 {
    color: var(--seresa-primary);
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.seresa-trial-subtitle {
    color: var(--seresa-text-secondary);
    font-size: 19px;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
}

.seresa-trial-info-box {
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--seresa-border);
    margin-bottom: 24px;
}

.seresa-trial-info-box.seresa-trial-important {
    border-left: 6px solid var(--seresa-secondary);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.seresa-trial-info-box h2 {
    margin: 0 0 20px 0;
    color: var(--seresa-primary);
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.01em;
}

.seresa-trial-info-box p {
    color: var(--seresa-text-secondary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.seresa-trial-info-box p:last-child {
    margin-bottom: 0;
}

.seresa-trial-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seresa-trial-details li {
    padding: 16px 0;
    border-bottom: 2px solid var(--seresa-border);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: var(--seresa-text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seresa-trial-details li:first-child {
    padding-top: 0;
}

.seresa-trial-details li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.seresa-trial-details li strong {
    font-weight: 600;
    color: var(--seresa-primary);
}

/* ========================================
   Steps Section
======================================== */
.seresa-trial-steps {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--seresa-border);
    margin-bottom: 24px;
}

.seresa-trial-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.seresa-trial-step:last-child {
    margin-bottom: 0;
}

.seresa-trial-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--seresa-secondary) 0%, #4f46e5 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.seresa-trial-step-content h3 {
    margin: 0 0 10px 0;
    color: var(--seresa-primary);
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.01em;
}

.seresa-trial-step-content p {
    margin: 0;
    color: var(--seresa-text-secondary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   Help Section
======================================== */
.seresa-trial-help {
    text-align: center;
    padding: 32px 20px;
    color: var(--seresa-text-secondary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.seresa-trial-help a {
    color: var(--seresa-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.seresa-trial-help a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 768px) {
    .seresa-trial-form {
        padding: 24px;
    }

    .seresa-trial-form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Re-add margin for mobile since fields stack vertically */
    .seresa-trial-form-row .seresa-trial-form-group {
        margin-bottom: 24px;
    }

    .seresa-trial-form-row .seresa-trial-form-group:last-child {
        margin-bottom: 0;
    }

    .seresa-trial-step {
        flex-direction: column;
        gap: 16px;
    }

    .seresa-trial-success-message h1 {
        font-size: 32px;
    }

    .seresa-trial-subtitle {
        font-size: 17px;
    }

    .seresa-trial-info-box {
        padding: 24px;
    }

    .seresa-trial-steps {
        padding: 24px;
    }
}

/* ========================================
   Success Icon
======================================== */
.seresa-trial-success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
    line-height: 1;
}

/* ========================================
   Warning Icon
======================================== */
.seresa-trial-warning-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
    line-height: 1;
}

/* ========================================
   Subscription Key Display
======================================== */
.seresa-trial-key-display {
    margin: 32px auto;
    padding: 32px 40px;
    max-width: 480px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid #22c55e;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
}

.seresa-trial-key-display p {
    margin: 0 0 16px 0;
    color: #166534 !important;
    font-family: "PosteramaTextW15", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 18px !important;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.seresa-trial-subscription-key {
    display: block;
    padding: 20px 32px;
    background: #ffffff;
    border: 2px solid #86efac;
    border-radius: 10px;
    font-family: "SF Mono", "Monaco", "Consolas", "Liberation Mono", monospace;
    font-size: 22px;
    font-weight: 700;
    color: #15803d;
    letter-spacing: 0.06em;
    user-select: all;
    cursor: text;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Next Steps Section
======================================== */
.seresa-trial-next-steps {
    text-align: left;
    margin: 32px 0;
    padding: 32px;
    background: var(--seresa-light-bg);
    border-radius: 12px;
    border: 1px solid var(--seresa-border);
}

.seresa-trial-next-steps h3 {
    margin: 0 0 24px 0;
    color: var(--seresa-text-primary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
    text-align: center;
}

.seresa-trial-next-steps ol {
    margin: 0;
    padding-left: 24px;
    color: var(--seresa-text-primary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    list-style-type: decimal;
}

.seresa-trial-next-steps ol li {
    margin-bottom: 16px;
    padding-left: 8px;
}

.seresa-trial-next-steps ol li:last-child {
    margin-bottom: 0;
}

.seresa-trial-next-steps ol li strong {
    color: var(--seresa-text-primary);
    font-weight: 600;
}

.seresa-trial-next-steps ol li a {
    color: var(--seresa-secondary);
    text-decoration: none;
    font-weight: 600;
}

.seresa-trial-next-steps ol li a:hover {
    text-decoration: underline;
}

/* ========================================
   Info Box in Verification Context
======================================== */
.seresa-trial-message .seresa-trial-info-box {
    text-align: center;
    margin: 32px 0 24px 0;
    padding: 24px 32px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
}

.seresa-trial-message .seresa-trial-info-box p {
    color: #0369a1;
    font-size: 15px;
    margin: 8px 0;
    line-height: 1.6;
}

.seresa-trial-message .seresa-trial-info-box p:first-child {
    font-weight: 600;
    font-size: 16px;
    color: #0369a1;
}

.seresa-trial-message .seresa-trial-info-box p small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #0c4a6e;
    font-weight: 500;
}

/* ========================================
   Already Verified / Resend Page Styles
======================================== */
.seresa-trial-spam-notice {
    margin: 24px 0;
    color: var(--seresa-text-secondary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.seresa-trial-resend-action {
    margin: 28px 0;
}

.seresa-trial-resend-key-btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.seresa-trial-resend-key-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.seresa-trial-resend-key-btn:disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.seresa-trial-resend-key-btn.sent {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.seresa-trial-feedback-message {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    display: none;
}

.seresa-trial-feedback-message.success {
    display: block;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    color: #065f46;
}

.seresa-trial-feedback-message.error {
    display: block;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    color: #991b1b;
}

.seresa-trial-feedback-message small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.9;
}

.seresa-trial-max-resends-warning {
    margin: 24px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
}

.seresa-trial-max-resends-warning p {
    margin: 0;
    color: #92400e;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.seresa-trial-max-resends-warning a {
    color: #92400e;
    font-weight: 600;
}

.seresa-trial-help-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--seresa-border);
}

.seresa-trial-help-footer p {
    color: var(--seresa-text-secondary);
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    margin: 0;
}

.seresa-trial-help-footer a {
    color: var(--seresa-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.seresa-trial-help-footer a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.seresa-trial-help-footer small {
    color: var(--seresa-text-secondary);
    font-size: 13px;
    font-family: "SF Mono", Monaco, "Courier New", monospace;
}

@media (max-width: 480px) {
    .seresa-trial-form-wrapper {
        padding: 24px 16px;
    }

    .seresa-trial-form {
        padding: 20px;
    }

    .seresa-trial-submit-btn {
        font-size: 15px;
        padding: 14px 24px;
    }

    .seresa-trial-success-icon {
        width: 64px;
        height: 64px;
        font-size: 36px;
    }

    .seresa-trial-next-steps {
        padding: 20px;
    }

    .seresa-trial-next-steps ol {
        padding-left: 20px;
    }
}
