﻿.main-container {
    background-color: transparent;
    background-image: linear-gradient(-180deg, #125192 0%, #24b1e6 100%);
    overflow: hidden;
    height: 100vh;
    position: relative;
    z-index: 2;
    padding: 100px;
    display: flex;
    align-items: center;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("/img/assets/hienergy-img-6.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.login-curve-img {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 3;
    animation: slide-in-top 1s ease-in-out forwards;
    animation-delay: 0s;
}

.input-group-text {
    color: #ffffff;
    background-color: #125192;
    border: 1px solid #125192;
    border-radius: 0px 4px 4px 0px !important;
    padding: 10px 20px;
    width: 60px;
}

.form-control {
    height: 50px;
    border: 1px solid #24b1e6;
    border-radius: 4px;
}

.sub-heading {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #24b1e6;
    text-transform: uppercase;
    gap: 10px;
}

.slash-icon {
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    color: #24b1e6;
    line-height: 1;
}

.dashed-divider {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin: 30px 0;
}

.dashed-divider hr {
    flex: 1;
    border: none;
    border-top: 1px dashed #ccc;
    margin: 0;
}

.dashed-divider span {
    color: #888888;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
}

.login-main {
    width: 100%;
}

.login-form-col {
    width: 50%;
    background-color: #fff;
    z-index: 5;
    padding: 40px;
    border-radius: 5px 0px 0px 5px;
    animation: slide-in-left 1s ease-in-out forwards;
    animation-delay: 0s;
}

.login-col {
    width: 50%;
    background-image: url('/img/assets/hienergy_img_23.jpg');
    background-position: top center;
    background-size: cover;
    z-index: 4;
    border-radius: 0px 5px 5px 0px;
}

.slider-shape-1 {
    animation: float-bob-x 3s linear 0s infinite;
    z-index: 2;
    position: absolute;
    top: 0px;
    right: -30px;
}

.row.forgot-pass-box {
    justify-content: center!important;
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 991px) {
    .login-form-col {
        padding: 20px;
    }

    .main-container {
        padding: 50px;
    }
}

@media screen and (max-width: 767px) {
    .main-container {
        background-color: transparent;
        background-image: linear-gradient(-180deg, #125192 0%, #24b1e6 100%);
        overflow-y: scroll;
        height: 100vh;
        position: relative;
        z-index: 2;
        padding: 30px;
        display: block;
        align-items: center;
    }
    .login-form-col {
        width: 100%;
        padding: 20px;
        border-radius: 5px 5px 0px 0px;
    }

    .login-col {
        width: 100%;
        border-radius: 0px 0px 5px 5px;
        height: 350px;
    }
}

@media screen and (max-width: 480px) {

}