.header,
.site-header,
.site-topbar,
.site-nav,
.top-header,
footer,
.footer {
    display: none !important;
}

body {
    background-color: var(--secondary-bg-color);
}

.login-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-wrapper .login-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.login-logo-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.login-logo-area .back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 12px;
    color: var(--text-color);
    transition: background-color 0.2s ease;
}

.login-logo-area .back-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.login-logo-area .login-logo {
    margin: 0;
}


.login-wrapper .login-logo {
    margin-right: auto;
    margin-bottom: 0;
    display: block;
}

.login-wrapper .login-logo img {
    width: auto;
    height: 40px;
    object-fit: contain;
    object-position: left;
}

.login-wrapper .login-container .login-form {
    background-color: var(--white-color);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.login-wrapper .login-container .login-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.login-wrapper .login-container .login-title .back-btn {
    margin-right: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--secondary-bg-color);
    border-radius: 12px;
}

.login-content {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 16px;
}

.social-login-group {
    display: flex;
    flex-direction: column;
    gap: 7.5px;
}

.social-btn {
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 0;
    display: flex;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.login-divider {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    position: absolute;
    top: 50%;
    left: 0;
}

.login-divider span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
    padding: 0 12px;
}

.login-description {
    font-size: 13.5px;
    font-weight: 500;
    margin: 15px 10px 10px 10px;
    color: var(--text-color);
    text-align: center;
}

.login-description a {
    color: var(--secondary-color);
}

.login-description a:hover {
    text-decoration: underline;
}

.site-input-btn {
    border: 0;
    outline: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
    height: 30px;
}

.site-input-btn i {
    font-size: 17px;
}

.forgot-password {
    margin-top: 5px;
    text-align: right;
}

.forgot-password a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 13px;
    text-decoration: underline;
}

.login-content .big-radio-group {
    gap: 10px;
}

.two-factor-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #D6D8DC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.two-factor-icon i {
    font-size: 30px;
    color: var(--text-color);
}

.two-factor-content {
    text-align: center;
}

.two-factor-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.two-factor-content p {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-color);
    max-width: 350px;
    margin: 0 auto 15px auto;
    opacity: .8;
}

.two-factor-code-input {
    margin-bottom: 15px;
    margin: 0 auto;
}

.two-factor-code-input .site-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 25px;
}

.two-factor-code-input label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.two-factor-code-input label #verificationTimer {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-color);
}

#confirmCode {
    width: 100%;
    margin: 15px auto 0 auto;
}

@media (max-width: 768px) {
    .login-wrapper {
        padding: 30px 0;
        align-items: flex-start;
    }

    .login-logo-area {
        padding: 0 16px;
    }

    .login-wrapper .login-logo {
        margin-left: 10px;
    }

    .login-wrapper .login-logo img {
        height: 35px;
    }

    .login-wrapper .login-container .login-form {
        border-radius: 0;
    }

    .login-content {
        padding: 0;
    }

}

.form-check-label a {
    color: var(--primary-color) !important;
    font-weight: normal !important;
}

.login-register-link {
    margin-top: 15px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 500;
}

.login-register-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.login-register-link a:hover {
    text-decoration: underline;
}

