.auth-page {
    background: #f6f6f7;
    font-family: Inter, sans-serif;
}

.auth-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
}

.auth-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0,128,96,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-icon-wrapper i {
    font-size: 40px;
    color: #008060;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.03em;
}

.auth-subtitle {
    color: #6b7280;
    line-height: 1.6;
}

.auth-input {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    font-size: 1.2rem;
    letter-spacing: 6px;
}

.auth-input:focus {
    border-color: #008060;
    box-shadow: 0 0 0 .2rem rgba(0,128,96,.12);
}

.auth-btn {
    height: 56px;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font-weight: 600;
}

.auth-btn:hover {
    background: #000;
}

.auth-btn-outline {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-weight: 600;
}

.auth-btn-outline:hover {
    border-color: #008060;
    color: #008060;
}

/* =========================================================
TOAST MESSAGE (fixed top-right, consistent with profile)
========================================================= */

#setupMsg,
.page-toast {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 100000;
    min-width: 320px;
    max-width: 440px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.5;
    box-shadow:
        0 4px 16px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.06);
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: transform .35s cubic-bezier(.22,1,.36,1),
                opacity .35s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

#setupMsg.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

#setupMsg.text-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

#setupMsg.text-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

#setupMsg.text-success::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

#setupMsg.text-danger::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    #setupMsg,
    .page-toast {
        top: 12px;
        right: 12px;
        left: 12px;
        min-width: 0;
        max-width: none;
        padding: 14px 16px;
        font-size: .85rem;
    }
}