/*==================================================
 GOOGLE FONT
==================================================*/


/*==================================================
 RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins',sans-serif;
    overflow: hidden;
    background: #edf3ff;
}

/*==================================================
 VARIABLES
==================================================*/

:root {
    --primary: #1565c0;
    --secondary: #42a5f5;
    --dark: #103a7b;
    --white: #ffffff;
    --text: #34495e;
    --glass: rgba(255,255,255,.18);
}

/*==================================================
 MAIN WRAPPER
==================================================*/

.login-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/*==================================================
 LEFT PANEL
==================================================*/

.left-panel {
    width: 60%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    color: #fff;
    background: linear-gradient( rgba(7,53,138,.35), rgba(7,53,138,.35) ), url('../assets/image/login-dashboard-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*==================================================
 OVERLAY
==================================================*/

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(4,50,130,.50), rgba(4,50,130,.10) );
    z-index: 1;
}

/*==================================================
 LEFT CONTENT
==================================================*/

.left-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
}

/*==================================================
 COMPANY LOGO
==================================================*/

.company-logo {
    width: 135px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,.20);
    transition: .35s;
}

    .company-logo:hover {
        transform: scale(1.05);
    }

/*==================================================
 TITLE
==================================================*/

.left-content h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #BBDC12;
}

/*==================================================
 DESCRIPTION
==================================================*/

.left-content p {
    font-size: 20px;
    width: 600px;
    line-height: 36px;
    color: #A8BBA3;
    font-weight:800;
}

/*==================================================
 FEATURE AREA
==================================================*/

.feature-box {
    position: relative;
    z-index: 5;
    display: flex;
    gap: 20px;
}

/*==================================================
 FEATURE CARD
==================================================*/

.feature {
    flex: 1;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    transition: .35s;
    border: 1px solid rgba(255,255,255,.15);
}

    .feature:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.25);
    }

    /*==================================================
 FEATURE ICON
==================================================*/

    .feature i {
        width: 65px;
        height: 65px;
        line-height: 65px;
        border-radius: 50%;
        background: #fff;
        color: #1565c0;
        font-size: 26px;
        margin-bottom: 15px;
        transition: .35s;
    }

    .feature:hover i {
        transform: rotate(12deg);
    }

    /*==================================================
 FEATURE TITLE
==================================================*/

    .feature h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    /*==================================================
 FEATURE TEXT
==================================================*/

    .feature small {
        color: #e5efff;
        font-size: 13px;
    }

/*==================================================
 BACKGROUND CIRCLE
==================================================*/

.left-panel::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -260px;
    right: -180px;
}

.left-panel::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    bottom: -180px;
    left: -120px;
}
/*==================================================
                RIGHT PANEL
==================================================*/

.right-panel {
    width: 40%;
    min-width: 420px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f8fc;
    position: relative;
    overflow: hidden;
}

    /* Background Decoration */

    .right-panel::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(21,101,192,.08);
        top: -120px;
        right: -120px;
    }

    .right-panel::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(66,165,245,.08);
        bottom: -120px;
        left: -120px;
    }

/*==================================================
                LOGIN CARD
==================================================*/

.login-card {
    width: 600px;
    max-width: 92%;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 25px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    animation: fadeIn .7s ease;
}

    .login-card:hover {
        transform: translateY(-4px);
        transition: .35s;
        box-shadow: 0 35px 70px rgba(0,0,0,.18);
    }

/*==================================================
                REGISTER CARD
==================================================*/

.register-card {
    width: 760px;
    max-width: 95%;
    max-height: 95vh;
    overflow: auto;
    background: #fff;
    border-radius: 28px;
    padding: 12px;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/*==================================================
                LOGIN ICON
==================================================*/

.login-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #edf5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

    .login-icon i {
        font-size: 44px;
        color: var(--primary);
    }

/*==================================================
                LOGIN TITLE
==================================================*/

.login-card h2 {
    font-size: 30px;
    color: #23395d;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.login-card p {
    text-align: center;
    color: #7d8da5;
    margin-bottom: 8px;
    font-size: 15px;
}

/*==================================================
                INPUT BOX
==================================================*/

.input-box {
    position: relative;
    margin-bottom: 22px;
}

    .input-box input {
        width: 100%;
        height: 58px;
        border: 2px solid #dce5f2;
        border-radius: 14px;
        padding-left: 58px;
        padding-right: 50px;
        font-size: 15px;
        outline: none;
        transition: .35s;
        background: #fff;
    }

        .input-box input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(21,101,192,.12);
        }

    .input-box > i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-size: 18px;
    }

/*==================================================
            PASSWORD TOGGLE
==================================================*/

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #7f8da4;
    font-size: 18px;
    transition: .3s;
}

    .password-toggle:hover {
        color: var(--primary);
    }

/*==================================================
            REMEMBER ROW
==================================================*/

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 14px;
}

    .remember-row label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #55657b;
        cursor: pointer;
    }

    .remember-row input {
        width: 16px;
        height: 16px;
    }

    .remember-row a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }

        .remember-row a:hover {
            text-decoration: underline;
        }

/*==================================================
                LOGIN BUTTON
==================================================*/

.login-btn {
    margin-top: 12px;
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg,#1565c0,#1e88e5);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .35s;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(21,101,192,.30);
    }

/*==================================================
                DIVIDER
==================================================*/

.divider {
    margin: 28px 0;
    text-align: center;
    color: #90a0b8;
    position: relative;
    font-weight: 600;
}

    .divider::before {
        content: "";
        position: absolute;
        width: 42%;
        height: 1px;
        background: #dde5ef;
        left: 0;
        top: 50%;
    }

    .divider::after {
        content: "";
        position: absolute;
        width: 42%;
        height: 1px;
        background: #dde5ef;
        right: 0;
        top: 50%;
    }

/*==================================================
            REGISTER LINK BUTTON
==================================================*/

.contact-btn {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary);
    border-radius: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .contact-btn:hover {
        background: var(--primary);
        color: #fff;
    }

    .contact-btn i {
        font-size: 18px;
    }

/*==================================================
            FOOTER
==================================================*/

.bottom-text {
    margin-top: 30px;
    text-align: center;
    color: #7c8ca5;
    font-size: 14px;
}

    .bottom-text i {
        color: var(--primary);
        margin-right: 6px;
    }

/*==================================================
            FADE ANIMATION
==================================================*/

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/*==================================================
        FEATURE CARDS
==================================================*/

.feature-box {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-top: auto;
}

.feature {
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.18);
    padding: 22px 15px;
    text-align: center;
    transition: .35s;
    overflow: hidden;
    position: relative;
}

    .feature::before {
        content: "";
        position: absolute;
        width: 60px;
        height: 220px;
        background: rgba(255,255,255,.18);
        left: -90px;
        top: -50px;
        transform: rotate(25deg);
        transition: .8s;
    }

    .feature:hover::before {
        left: 130%;
    }

    .feature:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.24);
        box-shadow: 0 18px 40px rgba(0,0,0,.18);
    }

    .feature i {
        width: 62px;
        height: 62px;
        line-height: 62px;
        border-radius: 50%;
        background: #fff;
        color: #1565c0;
        font-size: 26px;
        margin-bottom: 15px;
        transition: .35s;
    }

    .feature:hover i {
        transform: rotate(12deg) scale(1.1);
    }

    .feature h5 {
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
    }

    .feature small {
        color: #A8BBA3;
        font-size: 13px;
        font-weight: 800;
    }

/*==================================================
        STATISTICS CARD
==================================================*/

.stats-strip {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.stat-item {
    flex: 1;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.18);
}

    .stat-item h3 {
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-item span {
        color: #dbe8ff;
        font-size: 14px;
    }

/*==================================================
        REGISTER FORM
==================================================*/

.register-card h2 {
    color: #1d3557;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

.register-card label {
    display: block;
    margin-bottom: 8px;
    color: #37485d;
    font-size: 14px;
    font-weight: 600;
}

.register-card .form-control,
.register-card .form-select {
    height: 45px;
    border: 2px solid #dce5f2;
    border-radius: 14px;
    transition: .35s;
    font-size: 15px;
    background: #fff;
}

    .register-card .form-control:focus,
    .register-card .form-select:focus {
        border-color: #1565c0;
        box-shadow: 0 0 0 4px rgba(21,101,192,.12);
    }

/*==================================================
        PASSWORD POLICY
==================================================*/

.password-policy {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #dfe8f7;
}

    .password-policy ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .password-policy li {
        padding: 7px 0;
        font-size: 14px;
    }

    .password-policy .text-success {
        color: #2e7d32 !important;
        font-weight: 600;
    }

    .password-policy .text-danger {
        color: #d32f2f !important;
    }

/*==================================================
        REGISTER BUTTON
==================================================*/

.register-card .btn-primary {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg,#1565c0,#1e88e5);
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}

    .register-card .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(21,101,192,.30);
    }

/*==================================================
        LOGIN LINK
==================================================*/

.register-card .login-link {
    margin-top: 20px;
    text-align: center;
}

    .register-card .login-link a {
        color: #1565c0;
        text-decoration: none;
        font-weight: 600;
    }

        .register-card .login-link a:hover {
            text-decoration: underline;
        }

/*==================================================
        CUSTOM SCROLLBAR
==================================================*/

.register-card::-webkit-scrollbar {
    width: 8px;
}

.register-card::-webkit-scrollbar-thumb {
    background: #1565c0;
    border-radius: 10px;
}

.register-card::-webkit-scrollbar-track {
    background: #edf3ff;
}

/*==================================================
        GLASS EFFECT
==================================================*/

.login-card,
.register-card {
    position: relative;
    overflow: hidden;
}

    .login-card::before,
    .register-card::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 500px;
        background: rgba(255,255,255,.16);
        left: -260px;
        top: -120px;
        transform: rotate(25deg);
        transition: 1.2s;
    }

    .login-card:hover::before,
    .register-card:hover::before {
        left: 120%;
    }

/*==================================================
            FLOATING ICONS
==================================================*/

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.float-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 28px;
    animation: floatIcon 7s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.icon1 {
    top: 8%;
    left: 8%;
}

.icon2 {
    top: 18%;
    right: 10%;
    animation-delay: 1s;
}

.icon3 {
    top: 45%;
    left: 6%;
    animation-delay: 2s;
}

.icon4 {
    top: 58%;
    right: 15%;
    animation-delay: 3s;
}

.icon5 {
    bottom: 18%;
    left: 28%;
    animation-delay: 4s;
}

.icon6 {
    bottom: 8%;
    right: 35%;
    animation-delay: 5s;
}

/*==================================================
            GRID BACKGROUND
==================================================*/

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 45px 45px;
    opacity: .25;
    z-index: 1;
}

/*==================================================
            GLOW EFFECTS
==================================================*/

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    z-index: 0;
}

.glow-one {
    width: 320px;
    height: 320px;
    background: #4fc3f7;
    top: -120px;
    right: -80px;
}

.glow-two {
    width: 260px;
    height: 260px;
    background: #64b5f6;
    bottom: -100px;
    left: -80px;
}

/*==================================================
            PARTICLES
==================================================*/

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    animation: particleMove linear infinite;
}

    .particle:nth-child(1) {
        left: 8%;
        animation-duration: 10s;
    }

    .particle:nth-child(2) {
        left: 25%;
        width: 12px;
        height: 12px;
        animation-duration: 15s;
    }

    .particle:nth-child(3) {
        left: 50%;
        width: 6px;
        height: 6px;
        animation-duration: 12s;
    }

    .particle:nth-child(4) {
        left: 72%;
        width: 14px;
        height: 14px;
        animation-duration: 18s;
    }

    .particle:nth-child(5) {
        left: 92%;
        width: 10px;
        height: 10px;
        animation-duration: 20s;
    }

/*==================================================
            LOGO EFFECT
==================================================*/

.company-logo {
    animation: logoFloat 4s ease-in-out infinite;
}

    .company-logo:hover {
        transform: scale(1.08);
    }

/*==================================================
            TITLE ANIMATION
==================================================*/

.left-content h1 {
    animation: slideLeft .8s ease;
}

.left-content p {
    animation: slideLeft 1.2s ease;
}

/*==================================================
            FEATURE HOVER
==================================================*/

.feature {
    transition: .35s;
}

    .feature:hover {
        transform: translateY(-8px) scale(1.02);
    }

/*==================================================
            LOGIN CARD SHINE
==================================================*/

.login-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 450px;
    background: rgba(255,255,255,.18);
    left: -250px;
    top: -100px;
    transform: rotate(28deg);
    transition: 1.2s;
}

.login-card:hover::after {
    left: 600px;
}

/*==================================================
            BUTTON SHINE
==================================================*/

.login-btn {
    position: relative;
    overflow: hidden;
}

    .login-btn::before {
        content: "";
        position: absolute;
        width: 80px;
        height: 100%;
        background: rgba(255,255,255,.25);
        top: 0;
        left: -100px;
        transform: skewX(-25deg);
        transition: .8s;
    }

    .login-btn:hover::before {
        left: 120%;
    }

/*==================================================
            ANIMATIONS
==================================================*/

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes logoFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatIcon {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes particleMove {

    from {
        transform: translateY(100vh);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    to {
        transform: translateY(-120px);
        opacity: 0;
    }
}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .floating-icons,
    .grid-pattern,
    .glow,
    .particle {
        display: none;
    }
}

/*==================================================
            LARGE DESKTOP
1920px - 1600px
==================================================*/

@media (max-width:1700px) {

    .left-panel {
        padding: 50px;
    }

    .left-content h1 {
        font-size: 34px;
    }

    .left-content p {
        width: 460px;
        font-size: 18px;
    }

    .feature {
        padding: 18px;
    }
}

/*==================================================
        1440px
==================================================*/

@media (max-width:1440px) {

    .left-panel {
        width: 62%;
    }

    .right-panel {
        width: 38%;
    }

    .left-content h1 {
        font-size: 34px;
    }

    .left-content p {
        width: 420px;
        font-size: 17px;
        line-height: 30px;
    }

    .company-logo {
        width: 120px;
    }

    .feature {
        padding: 16px;
    }

        .feature i {
            width: 55px;
            height: 55px;
            line-height: 55px;
            font-size: 22px;
        }

        .feature h5 {
            font-size: 16px;
        }
}

/*==================================================
        1366px
==================================================*/

@media(max-width:1366px) {

    .left-panel {
        padding: 45px;
    }

    .left-content h1 {
        font-size: 34px;
    }

    .left-content p {
        width: 390px;
    }

    .feature-box {
        gap: 15px;
    }

    .login-card {
        width: 420px;
    }
}

/*==================================================
        1200px
==================================================*/

@media(max-width:1200px) {

    .left-panel {
        width: 58%;
    }

    .right-panel {
        width: 42%;
    }

    .feature-box {
        grid-template-columns: repeat(2,1fr);
    }

    .left-content h1 {
        font-size: 34px;
    }

    .left-content p {
        width: 100%;
    }
}

/*==================================================
        TABLET
==================================================*/

@media(max-width:991px) {

    body {
        overflow: auto;
    }

    .login-wrapper {
        flex-direction: column;
        height: auto;
    }

    .left-panel {
        width: 100%;
        min-height: 550px;
        padding: 40px;
    }

    .right-panel {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding: 40px 20px;
    }

    .left-content {
        max-width: 100%;
        text-align: center;
    }

        .left-content h1 {
            font-size: 34px;
        }

        .left-content p {
            width: 100%;
            margin: auto;
            margin-top: 20px;
        }

    .feature-box {
        margin-top: 40px;
        grid-template-columns: repeat(2,1fr);
    }

    .login-card,
    .register-card {
        width: 100%;
        max-width: 650px;
    }
}

/*==================================================
        768px
==================================================*/

@media(max-width:768px) {

    .left-panel {
        padding: 30px;
        min-height: 480px;
    }

    .company-logo {
        width: 100px;
    }

    .left-content h1 {
        font-size: 34px;
    }

    .left-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .feature-box {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 20px;
    }

    .login-card {
        padding: 35px;
    }

    .register-card {
        padding: 30px;
    }
}

/*==================================================
        576px
==================================================*/

@media(max-width:576px) {

    .left-panel {
        padding: 25px;
    }

    .company-logo {
        width: 90px;
    }

    .left-content h1 {
        font-size: 30px;
    }

    .left-content p {
        font-size: 15px;
    }

    .feature {
        padding: 18px;
    }

        .feature h5 {
            font-size: 15px;
        }

        .feature small {
            font-size: 12px;
        }

    .login-card {
        padding: 25px;
        border-radius: 20px;
    }

    .login-icon {
        width: 80px;
        height: 80px;
    }

        .login-icon i {
            font-size: 34px;
        }

    .input-box input {
        height: 50px;
    }

    .login-btn {
        height: 50px;
    }
}

/*==================================================
        425px
==================================================*/

@media(max-width:425px) {

    .left-content h1 {
        font-size: 28px;
    }

    .left-content p {
        line-height: 25px;
    }

    .feature i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}

/*==================================================
        375px
==================================================*/

@media(max-width:375px) {

    .left-content h1 {
        font-size: 25px;
    }

    .company-logo {
        width: 80px;
    }

    .login-card {
        padding: 20px;
    }

    .input-box input {
        padding-left: 48px;
    }
}

/*==================================================
        320px
==================================================*/

@media(max-width:320px) {

    .left-panel {
        padding: 20px;
    }

    .left-content h1 {
        font-size: 22px;
    }

    .left-content p {
        font-size: 14px;
    }

    .feature {
        padding: 15px;
    }

    .login-card {
        padding: 18px;
    }
}

/*==================================================
        CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #1565c0;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #edf3ff;
}

/*==================================================
        TEXT SELECTION
==================================================*/

::selection {
    background: #1565c0;
    color: #fff;
}

/*==================================================
        VERSION LABEL
==================================================*/

.version {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    opacity: .7;
    font-size: 13px;
    z-index: 20;
}

@media(max-width:991px) {

    .version {
        display: none;
    }
}

/*==================================================
        PREMIUM SHADOW
==================================================*/

.left-panel {
    box-shadow: inset -10px 0 30px rgba(0,0,0,.10);
}

.right-panel {
    box-shadow: -10px 0 35px rgba(0,0,0,.08);
}

/*==================================================
        LOGIN CARD GLOW
==================================================*/

.login-card {
    transition: .35s;
}

    .login-card:hover {
        box-shadow: 0 40px 80px rgba(21,101,192,.20), 0 20px 40px rgba(0,0,0,.10);
    }

/*==================================================
        FEATURE CARD GLOW
==================================================*/

.feature {
    transition: .35s;
}

    .feature:hover {
        box-shadow: 0 20px 45px rgba(255,255,255,.18);
    }

    /*==================================================
        ICON GLOW
==================================================*/

    .feature i {
        box-shadow: 0 10px 25px rgba(21,101,192,.20);
    }

/*==================================================
        COMPANY LOGO
==================================================*/

.company-logo {
    animation: logoAnimation 5s ease-in-out infinite;
}

/*==================================================
        TITLE
==================================================*/

.left-content h1 {
    text-shadow: 0 4px 12px rgba(0,0,0,.25);
}

/*==================================================
        DESCRIPTION
==================================================*/

.left-content p {
    text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/*==================================================
        LOGIN BUTTON
==================================================*/

.login-btn {
    position: relative;
    overflow: hidden;
}

    .login-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 70%;
        height: 100%;
        background: rgba(255,255,255,.35);
        transform: skewX(-25deg);
        transition: 1s;
    }

    .login-btn:hover::after {
        left: 150%;
    }

/*==================================================
        INPUT HOVER
==================================================*/

.input-box input:hover {
    border-color: #42a5f5;
}

/*==================================================
        INPUT PLACEHOLDER
==================================================*/

.input-box input::placeholder {
    color: #95a5a6;
}

/*==================================================
        FEATURE ICON PULSE
==================================================*/

.feature:hover i {
    animation: pulse .7s ease;
}

/*==================================================
        BACKGROUND BLUR CIRCLE
==================================================*/

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .25;
    z-index: 0;
}

.blur1 {
    width: 280px;
    height: 280px;
    background: #29b6f6;
    top: 80px;
    left: -120px;
}

.blur2 {
    width: 220px;
    height: 220px;
    background: #64b5f6;
    right: -80px;
    bottom: 120px;
}

/*==================================================
        FLOATING LIGHT
==================================================*/

.light {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: .5;
    animation: lightMove 8s linear infinite;
}

    .light:nth-child(1) {
        left: 10%;
        animation-duration: 8s;
    }

    .light:nth-child(2) {
        left: 30%;
        animation-duration: 12s;
    }

    .light:nth-child(3) {
        left: 55%;
        animation-duration: 15s;
    }

    .light:nth-child(4) {
        left: 80%;
        animation-duration: 10s;
    }

/*==================================================
        LOGIN CARD BORDER
==================================================*/

.login-card {
    border: 1px solid rgba(255,255,255,.5);
}

/*==================================================
        REGISTER CARD BORDER
==================================================*/

.register-card {
    border: 1px solid rgba(255,255,255,.5);
}

/*==================================================
        SCROLLBAR
==================================================*/

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    background: #1565c0;
    border-radius: 20px;
}

/*==================================================
        KEYFRAMES
==================================================*/

@keyframes logoAnimation {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lightMove {

    from {
        transform: translateY(110vh);
        opacity: 0;
    }

    20% {
        opacity: .7;
    }

    to {
        transform: translateY(-120px);
        opacity: 0;
    }
}

/*==================================================
        PRINT
==================================================*/

@media print {

    .login-wrapper {
        display: block;
    }

    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
    }
}

.password-policy {
    margin-top: 0px;
    padding: 18px;
    background: #f8fbff;
    border: 1px solid #dbe8f8;
    border-radius: 15px;
}

.valid-rule,
.invalid-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 8px;
    transition: .3s;
}

.valid-rule {
    color: #2e7d32;
    background: #eaf7ed;
}

    .valid-rule i {
        color: #2e7d32;
    }

.invalid-rule {
    color: #d32f2f;
    background: #fdecec;
}

    .invalid-rule i {
        color: #d32f2f;
    }