/*----------------------------------------
    Login Page (split panel)
------------------------------------------*/
html, body.login-split {
    height: 100%;
}

body.login-split {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    min-width: 0 !important;
    background: #fff;
}

/* Left brand panel */
.login-split-left {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: radial-gradient(circle at 20% 20%, #3a1130 0%, #1c1c28 45%, #101018 100%);
}

.login-split-left-content {
    max-width: 420px;
    color: #fff;
    animation: loginFadeIn .5s ease;
}

.login-brand-icon {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.login-tagline {
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .75rem;
}

.login-tagline-sub {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    margin-bottom: 0;
}

/* Right form panel */
.login-split-right {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-form-wrapper {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    animation: loginFadeIn .5s ease .05s both;
}

@keyframes loginFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    border: 1px solid #ececf2 !important;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(20, 20, 40, .07);
}

/* Overrides a leftover theme demo rule (.login-form{width:20rem}) that made
   the form narrower than its card, pushing all its content to the left. */
.login-form {
    width: 100% !important;
}

.login-form-title {
    font-weight: 600;
    margin-bottom: .25rem;
}

.login-subtitle {
    color: #9797a3;
    font-size: .8125rem;
    margin-bottom: 1.5rem;
}

.login-form .form-control {
    height: 46px;
    border-radius: 8px;
    border: 1px solid #e3e3ea;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.login-form .form-control:focus {
    border-color: #EC1567;
    box-shadow: 0 0 0 .2rem rgba(236, 21, 103, .15);
}

.login-form .form-control-feedback {
    line-height: 46px;
}

.login-form #txtPass {
    padding-right: 2.5rem;
}

.login-form .password-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    line-height: 46px;
    text-align: center;
    color: #9a9aa5;
    cursor: pointer;
    z-index: 5;
}

.login-form .password-toggle:hover {
    color: #EC1567;
}

.btn-login {
    height: 46px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(135deg, #EC1567, #B0004B);
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-login:hover,
.btn-login:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px -4px rgba(176, 0, 75, .45);
}

.btn-login:active {
    transform: translateY(0);
}

.login-footer-text {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    color: #b2b2bd;
    font-size: .8125rem;
}

.login-footer-text a {
    color: #7a7a87;
}

/* Small screens: hide the brand panel, form takes the full width */
@media (max-width: 767.98px) {
    .login-split-left {
        display: none;
    }

    .login-split-right {
        flex: 1 1 100%;
    }

    .login-form-wrapper {
        max-width: 100%;
    }
}
