/* =========================================
   SECTION BASE
========================================= */
.how-login-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #708edb 0%, #9897dd 100%);
}

/* GRID */
.how-login-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* =========================================
   LEFT SIDE (FLOW STYLE)
========================================= */
.how-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* HEADER */
.how-header h2 {
    font-size: 32px;
    line-height: 1.3;
}

.how-header p {
    font-size: 14px;
    color: var(--grey-500);
}

/* STEPS CONTAINER */
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

/* VERTICAL LINE (FLOW EFFECT) */
.how-steps::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(30, 94, 255, 0.15);
}

/* STEP */
.how-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* NUMBER CIRCLE */
.step-number {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 600;
}

/* STEP CONTENT */
.how-step-content {
    background: white;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--grey-100);
    width: 100%;

    transition: 0.25s ease;
}

.how-step-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.how-step-content h3 {
    font-size: 15px;
    font-weight: 600;
}

.how-step-content p {
    font-size: 13px;
    color: var(--grey-500);
}

/* CTA */
.how-cta {
    margin-top: 10px;
}

.how-cta-note {
    font-size: 12px;
    color: var(--grey-500);
}

/* =========================================
   RIGHT SIDE (CONTROL PANEL STYLE)
========================================= */
.login-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* HEADER */
.login-header h2 {
    font-size: 30px;
}

.login-header p {
    font-size: 14px;
    color: var(--grey-500);
}

/* CARD */
.login-card {
    background: white;
    padding: 30px;
    border-radius: 18px;

    border: 1px solid var(--grey-100);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* REGISTER */
.login-register-cta {
    text-align: center;
}

/* DIVIDER */
.login-divider {
    text-align: center;
    font-size: 12px;
    color: var(--grey-500);
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--grey-100);
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

/* BUTTON GRID */
.login-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* BUTTON */
.login-btn {
    padding: 18px;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    text-decoration: none;
    color: var(--grey-900);

    transition: 0.25s ease;
}

/* COLORS */
.login-btn.owner {
    background: linear-gradient(135deg, #e9f0ff, #dbe7ff);
}

.login-btn.attendant {
    background: linear-gradient(135deg, #eafff5, #d8fff0);
}

.login-btn.admin {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

/* HOVER */
.login-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* TEXT */
.login-btn-label {
    font-size: 14px;
    font-weight: 600;
}

.login-btn-sub {
    font-size: 12px;
    color: var(--grey-500);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .how-login-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .login-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .how-login-section {
        padding: 60px 0;
    }

    .how-header h2,
    .login-header h2 {
        font-size: 24px;
    }

    .login-buttons {
        grid-template-columns: 1fr;
    }
}