.page-login {
    width: 100%;
    height: 100%;
    background: #fff;
}

.header{
    margin: 16px;
}
.logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.logo-container .logo {
    width: 160px;
    height: 29px;
}

.logo-container .logo-title {
    font-size: 24px;
    color: #333;
}

.login-wrap {
    margin-top: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-wrap {
    width: 100%;
}

.btn-login {
    background-color: #b90a12;
    color: #fff;
    border: 0;
}
.btn-login:hover {
    background-color: #cd1922;
    color: #fff;
}

.login-wrap .login-content {
    width: 700px;
}

.btn-captcha {
    color: #b90a12 !important;
}

.login-tab-switch {
    display: flex;
    margin-bottom: 20px;
}
.tab-item {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    text-decoration: none !important;
    color: #333;
    font-size: 22px;
}
.tab-item.active {
    color: #b90a12;
    font-weight: bold;
    font-size: 1.8em;
}

body.page-login .login-wrap .card,
body.page-forgotten .login-wrap .card {
    width: 100%;
}

@media (max-width: 576px) {
    .login-wrap .login-content {
        width: 98%;
    }
}
