.eoa-auth-shell {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 16px;
}

.eoa-auth-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid #d9dde3;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(20, 30, 40, 0.08);
    padding: 32px;
}

.eoa-auth-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
}

.eoa-auth-subtitle {
    margin: 0 0 24px;
    color: #5b6470;
    font-size: 15px;
}

.eoa-auth-form p {
    margin: 0 0 16px;
}

.eoa-auth-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1f2933;
}

.eoa-auth-form input[type="email"],
.eoa-auth-form input[type="password"] {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #c9d2dc;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
}

.eoa-auth-remember label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.eoa-auth-actions {
    margin-top: 20px;
}

.eoa-auth-btn {
    display: inline-block;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.2;
}

.eoa-auth-btn-primary {
    background: #111827;
    color: #ffffff;
}

.eoa-auth-btn-primary:hover {
    background: #0b1220;
    color: #ffffff;
}

.eoa-auth-btn-secondary {
    background: #ffffff;
    color: #111827;
    border-color: #c9d2dc;
}

.eoa-auth-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #5b6470;
}

.eoa-auth-links a {
    color: #111827;
    text-decoration: none;
}

.eoa-auth-links a:hover {
    text-decoration: underline;
}

.eoa-auth-notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.eoa-auth-notice-error {
    background: #fff3f2;
    border: 1px solid #f3c7c3;
    color: #8a1f17;
}