﻿

.login-wrapper {
    max-width: /*1200px*/ 1145px;
    margin: /* 30px auto*/ 85px auto;
    padding: 0 15px;
    background-color: #fc0000;
    border-radius: 15px;
}

.login-box {
    display: flex;
    background: #fff;
    overflow: hidden;
    box-shadow: /*0 5px 25px rgba(0,0,0,.08)*/ 2px 2px 25px 0px rgb(0 0 0 / 58%);
}

/* Left Side */

.login-form-area {
    width: 35%;
    padding: 40px 25px;
    background-color: beige;
}

.logos {
    margin-bottom: 20px;
}

    .logos img {
        height: 60px;
    }

.login-form-area h2 {
    font-size: 25px;
    margin-bottom: 10px;
    color: /*#0d3556*/ #0a0f20;
}

.login-form-area p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group {
    margin-bottom: 15px;
}

    .input-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
    }

    .input-group input {
        width: 100%;
        height: 48px;
        padding: 0 15px;
        border: /*1px solid #ddd*/ 1px solid #0a0f20;
        outline: none;
        border-radius: 10px !important;
        background-color: #f1f1e1a6;
    }

.password-box {
    position: relative;
}

    .password-box i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

.captcha-box {
    background: #f5f5f5;
    text-align: center;
    padding: 15px;
    font-size: 30px;
    letter-spacing: 5px;
    color: red;
    margin-bottom: 15px;
    font-weight: bold;
}

.options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
}

    .options a {
        color: #ff6600;
        text-decoration: none;
    }

.login-btn {
    width: 100%;
    height: 50px;
    background: #0a0f20;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

/* Right Slider */

.slider-area {
    width: 65%;
    position: relative;
    background-color: #f5f5dc;
}


.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .8s;
}
    /* .slide {
        position: absolute;
        inset: 0;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #fff;
    }*/

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px 0 0 15px;
    }

/* Partner Section */

.partner-section {
    background: #fff;
    margin-top: 15px;
    padding: 20px;
}

    .partner-section h3 {
        margin-bottom: 15px;
    }

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

    .marquee-content img {
        height: 60px;
        margin-right: 60px;
    }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Whatsapp */

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
}

/* Responsive */


@media(max-width:991px) {

    .login-box {
        flex-direction: column;
    }

    .login-form-area {
        width: 100%;
    }

    .slider-area {
        width: 100%;
        height: 350px;
    }
}

@media(max-width:576px) {

    .login-form-area {
        padding: 25px;
    }

        .login-form-area h2 {
            font-size: 25px;
        }

    .options {
        flex-direction: column;
        gap: 10px;
    }

    .marquee-content img {
        height: 40px;
        margin-right: 30px;
    }
}
@media screen and (min-width: 320px) and (max-width: 428px) {
    .slide img{
        object-fit:contain;
    }
    .slider-area {
        height: 250px;
    }
    .login-wrapper {
        margin: 0px auto;
    }
    .login-wrapper{
        border-radius:0px;
    }
    .logos{
        display:none;
    }
    .login-form-area h2 {
        font-size: 20px;
        margin-bottom: 2px;
    }
    .input-group input{
        font-size:15px;
    }
    .login-wrapper {
        background-color: #0a0f20;
    }
}









