.temp-login-page {
    padding: 38px 16px 64px;
    background: #eeeeee;
}

.temp-login-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 15px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.temp-copy p,
.temp-hint {
    color: #777777;
}

.temp-copy h1 {
    margin: 0 0 18px;
    color: #1a1a1a;
    font-size: 37px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.5px;
}

.temp-copy p {
    max-width: 520px;
    margin: 0 auto 24px;
    color: #212121;
    font-size: 15px;
    line-height: 1.6;
}

.temp-step {
    display: none;
    max-width: 380px;
    margin: 0 auto;
}

.temp-step.is-active {
    display: block;
    animation: tempFade 0.24s ease both;
}

.temp-step label {
    display: none;
}

.temp-primary {
    width: 180px !important;
    max-width: 100%;
    height: 56px !important;
    margin-top: 18px;
    border-radius: 50px !important;
    background: #ff8200 !important;
    box-shadow: none !important;
}

.temp-recaptcha-wrap {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 16px;
}

.temp-primary .btn_inner_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

.temp-notice-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.temp-notice-action:hover {
    color: #ffffff;
    text-decoration: none !important;
}

.temp-primary.is-loading {
    opacity: 0.9;
    cursor: wait;
}

.temp-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: tempSpin 0.72s linear infinite;
}

.temp-alert {
    display: none;
    max-width: 420px;
    margin: 0 auto 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.temp-alert.is-visible {
    display: block;
}

.temp-alert.is-error {
    background: #fff0ed;
    color: #b73724;
}

.temp-alert.is-success {
    background: #e9f8e6;
    color: #27911f;
}

.temp-code-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px;
    max-width: 380px;
    margin: 0 auto;
}

.temp-code-input {
    width: 100%;
    height: 54px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    color: #212121;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.temp-code-input:focus {
    border-color: #ff7b1c;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 123, 28, 0.12);
    outline: 0;
}

.temp-hint {
    display: block;
    max-width: 420px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    font-size: 13px;
    line-height: 1.5;
}

.temp-link {
    display: block;
    width: auto;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #212121;
    cursor: pointer;
    font-weight: 700;
}

.temp-link:disabled {
    color: #999999;
    cursor: not-allowed;
}

.temp-link.is-muted {
    color: #777777;
    font-size: 13px;
}

@keyframes tempFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tempSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 560px) {
    .temp-login-page {
        padding: 22px 12px 44px;
    }

    .temp-login-card {
        padding: 18px 0 10px;
    }

    .temp-step {
        max-width: 100%;
    }

    .temp-recaptcha-wrap {
        transform: scale(.88);
        transform-origin: top center;
        justify-content: center !important;
        margin-bottom: -8px;
    }

    .temp-copy h1 {
        font-size: 30px;
    }

    .temp-code-grid {
        gap: 6px;
    }

    .temp-code-input {
        height: 48px;
        border-radius: 10px;
        font-size: 19px;
    }
}
