.guest-body {
    min-height: 100vh;
    background: linear-gradient(180deg, #eef2ff 0%, #f5f6f8 40%);
    font-family: 'Inter', sans-serif;
}

/* ===================== HERO / WELCOME ===================== */
.hero-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 32px 60px;
}

.hero-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 40px;
}

.hero-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-nav-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.hero-nav-logo span {
    font-weight: 700;
    font-size: 16px;
    color: #1b1b18;
}

.btn-outline {
    padding: 10px 24px;
    border: 1.5px solid #2f6bff;
    color: #2f6bff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-outline:hover {
    background: #2f6bff;
    color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 60vh;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #e8edff;
    color: #2f6bff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 800;
    color: #1b1b18;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: #2f6bff;
}

.hero-text p {
    font-size: 15px;
    color: #706f6c;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #2f6bff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.25);
    transition: all 0.15s;
}
.btn-primary:hover {
    background: #1d54e0;
    transform: translateY(-2px);
}

.hero-illustration {
    flex: 1;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
}

@media (max-width: 800px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-text h1 { font-size: 30px; }
}

/* ===================== LOGIN CARD ===================== */
.login-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 36px 32px;
    margin: 60px auto;
}
.login-card h1 { font-size: 22px; font-weight: 700; text-align: center; color: #1b1b18; }
.login-card p.subtitle { text-align: center; color: #706f6c; font-size: 13px; margin-bottom: 24px; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #706f6c;
    text-decoration: none;
    margin-bottom: 20px;
}
.back-link:hover { color: #2f6bff; }

.form-group { margin-bottom: 16px; }
.form-group label { display:block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color:#1b1b18; }
.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e3e3e0;
    border-radius: 8px;
    font-size: 14px;
}
.form-group input:focus { outline: none; border-color: #2f6bff; box-shadow: 0 0 0 3px rgba(47,107,255,0.1); }
.form-error { color: #e5484d; font-size: 12px; margin-top: 4px; }

.login-card h1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #1b1b18;
}

.login-page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-title {
    text-align: center !important;
    width: 100%;
}