body {
    font-family: 'Open Sans', sans-serif;
    color: #424242;
}

.login-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    background: linear-gradient(132deg, #FC415A, #591BC5, #212335);
    background-size: 400% 400%;
    animation: Gradient 15s ease infinite;
}
@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.login-bg-img {
    top: 0;
    bottom: 0;
    min-height: 100vh;
    z-index: 999;
    opacity: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overflow: hidden;
    background: #ffffffe6;
    border-radius: 0 35px 35px 0;
    background-image: url(../images/login-bg.png);
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    padding-top: 110px;
}
.validation-summary-valid {
    display: none;
}
.bg-img-inner:before {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    top: 2px;
    right: 2px;
    border-radius: 0 35px;
    z-index: -1;
    -webkit-clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    background-image: linear-gradient(to bottom, #f25b25, #840054);
}

.bg-img-inner:after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 2px;
    left: 2px;
    border-radius: 0 35px;
    z-index: -1;
    -webkit-clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
    background-image: linear-gradient(to top, #f25b25, #840054);
}

.login-info-sec {
    z-index: 999;
    max-width: 650px;
}

.center h1 {
    color: rgb(238 40 64 / 91%);
    font-size: 47px;
    font-weight: 500;
    background-size: cover;
    background-image: url(../images/text-bg.jpg);
    -webkit-background-clip: text;
    animation: background-text-animation 15s 
linear infinite;
    margin-bottom: 0px;
    font-family: fantasy;
    line-height: 55px;
}
.center p {
        background-color: #083a81;
    width: fit-content;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 8px;
        margin-bottom: 20px;
        line-height: normal;
}
@keyframes background-text-animation {
    0% {
        background-position: left 0px top 50%;
    }
    50% {
        background-position: left 1500px top 50%;
    }
    100% {
        background-position: left 0px top 50%;
    }
}

.left-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    border: 1px solid #083a81;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 15px;
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #ffffffa1;
}

.right-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    border: 1px solid #7a194b;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 15px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #ffffffa1;
}

    .left-logo img, .right-logo img {
        width: 145px;
    }

    .left-logo span, .right-logo span {
        font-size: 30px;
        font-weight: 700;
        color: #083a81;
    }
 
.login-video {
        margin: 0;
    padding: 10px;
    border: 1px solid #083a81;
    width: fit-content;
    height: fit-content;
    padding-bottom: 5px;
    border-radius: 3px;
    margin-bottom: 15px;
}
.login-video video {
    width: 100%;
}
.login-info-para {
    margin-bottom: 0;
    line-height: 28px;
}
.right-side-bg {
    background-image: url(../images/right-bg.png);
    height: 100%;
    width: -webkit-fill-available;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    right: 0px;
    opacity: 0.1;
    background-position: center;
    background-size: cover;
    background-color: #ffffffc7;
    background-blend-mode: overlay;
}
.form-info {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}

.login-form-section {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    z-index: 999;
}
.text-val {
    position: absolute;
    bottom: -24px;
    margin: 0;
    font-size: 14px;
    color: #df4747;
}
.form-section-innner {
    border: 1px solid #fff;
    padding: 35px;
    border-radius: 5px;
}

.login-form-logo img {
    margin-bottom: 35px;
    background-color: #fff;
    padding: 15px;
    width: 220px;
    border-radius: 3px;
}

.btn-section {  
    top: 30px;
    position: absolute;
    left: 0px;
    float: right;
    display: inline-block;
    width: 100px;
}

.btn-section .link-btn {
    font-size: 14px;
    float: left;
    background: transparent;
    font-weight: 400;
    line-height: 50px;
    width: 120px;
    text-decoration: none;
    text-decoration: blink;
    text-align: center;
    color: #fff !important;
    border-radius: 0 50px 50px 0;
    margin-bottom: 5px;
    text-transform: uppercase;
    background-image: linear-gradient(to bottom, #f25b25, #840054);
}

.login-inner-form {
    width: 100%;
}

.login-inner-form .form-box {
    float: left;
    width: 100%;
    position: relative;
}

.login-inner-form .form-group {
    margin-bottom: 25px;
}

.login-inner-form .form-control {
    font-size: 16px;
    outline: none;
    color: #535353;
    border-radius: 3px;
    border: 1px solid #efefef;
    background: #efefef;
    height: 55px;
    float: left;
    width: 100%;
    padding: 13px 40px 11px 15px;
}

.login-inner-form .form-box i {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 18px;
    color: #535353;
}

.login-bg {
    background-image: linear-gradient(to bottom, #ef5e20, #a11308);
}

.login-btn {
    cursor: pointer;
    box-shadow: none !important;
    padding: 0 30px;
    line-height: 51px;
    color: #fff;
    text-align: center;
    border: 1px solid transparent;
    display: inline-block;
    padding: 0 50px;
    position: relative;
    line-height: 51px;
    z-index: 1;
    transition: all .7s ease;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
}


.login-btn:hover:before {
    width: 0;
    opacity: 1;
    visibility: visible;
}

.login-btn:hover:after {
    width: 0;
    opacity: 1;
    visibility: visible;
}
.login-btn:hover {
    color: #ffffff;
    border: 1px solid #ee2840;
    background: #ee284042;
} 


.login-btn:before {
    background-image: linear-gradient(to bottom, #ef5e20, #a11308);
        position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .7s ease;
    z-index: -1;
    border-radius: 3px;
}

.login-btn:after {
    background-image: linear-gradient(to bottom, #ef5e20, #a11308);
        position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .7s ease;
    z-index: -1;
}

@media (max-width: 992px) {
    .login-bg-img, .right-logo {
        display: none;
    }
    
    .btn-section {
        display: none;
    }
    .login-form-section .form-section-innner:before {
        display: none;
    }
    .login-form-section .form-section-innner:after {
        display: none;
    }
}