*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.eoa-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.eoa-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.eoa-logo {
    text-align: center;
    margin-bottom: 28px;
}

.eoa-logo img {
    max-height: 48px;
    width: auto;
}

.eoa-site-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.eoa-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.eoa-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 20px;
}

.eoa-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eoa-form label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.eoa-form input[type="email"],
.eoa-form input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: border-color 0.15s;
}

.eoa-form input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.eoa-form button[type="submit"] {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.eoa-form button[type="submit"]:hover {
    background: #1d4ed8;
}

.eoa-resend {
    margin-top: 8px;
    align-items: center;
}

.eoa-link-btn {
    background: none !important;
    border: none !important;
    color: #2563eb !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer;
    padding: 0 !important;
    text-decoration: underline;
}

.eoa-link-btn:hover {
    color: #1d4ed8 !important;
}

@media (max-width: 480px) {
    .eoa-card { padding: 28px 20px; border-radius: 0; box-shadow: none; }
}
