.login_Outer_Section {
    background: linear-gradient(rgba(236, 230, 230, 0.196), rgba(213, 127, 35, 0.315)), url('../img/a1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center center;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    animation: bgZoom 4s ease-in-out infinite alternate;
}

@keyframes bgZoom {
    0% {
        background-size: 100% 100%;
    }

    50% {
        background-size: 105% 110%;
    }

    100% {
        background-size: 100% 100%;
    }
}

.container-slider {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 430px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(241, 151, 6, 0.329);
    margin-top: 100px;
}


/* Inner Slider */
.inner-slider {
    width: 200%;
    height: 100%;
    display: flex;
    position: relative;
    z-index: 5;
    transition: transform 1.2s ease-in-out;
}

/* Each View */
.view {
    width: 50%;
    display: flex;
}

/* Sections */
.section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Content Side */
.content-side {
    background: linear-gradient(135deg, #e1610cda, #9a00c0f3);
    color: #fff;
    border-radius: 15px 0 0 15px;
}

    .content-side h2 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .content-side p {
        font-size: 13px;
        opacity: 0.9;
        line-height: 16px;
    }

/* Form Side */
.form-side {
    background: #ffffffdd;
    border-radius: 0 15px 15px 0;
    position: relative;
}

    .form-side h2 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
    }

/* Input with Icon */
.form_input {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 0px;
    transition: all 0.1s ease;
}

    .form_input i {
        color: #fe6505;
        font-size: 18px;
        margin-right: 10px;
    }

    .form_input input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 16px;
        padding: 3px 5px;
        box-shadow: none !important;
    }

    .form_input select {
        box-shadow: none !important;
        border: 0px;
        padding: 0px 12px;
        color: rgb(104, 101, 101);
    }

        .form_input select option {
            box-shadow: none !important;
            border: 1px solid #fc8e07 !important;
            padding: 0px 5px;
            background-color: #ffffff;
            font-size: 13px;
            color: rgb(125, 123, 123);
        }

    .form_input:focus-within {
        border-bottom: 1px solid #ff570a;
    }

.btn-primary {
    background-color: #fc8e07;
    border: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .btn-primary:hover {
        background-color: #fc8e07;
        box-shadow: 0px 0px 23px 0px rgba(126, 210, 225, 0.916);
    }

.toggle-link {
    margin-top: 15px;
    text-align: center;
}

    .toggle-link a {
        color: #ff9009;
        text-decoration: none;
        font-weight: 500;
    }

        .toggle-link a:hover {
            text-decoration: underline;
        }

.captcha_section {
    padding: 4px 6px 4px 11px;
    margin: 0px 5px;
    border: 0px dashed rgb(125, 125, 125);
    margin-left: -11px;
    margin-bottom: -7px;
    font-weight: 700;
    border-radius: 5px 5px 0px 0px;
    background-color: #e3e0e0;
}

.form_input .Captcha_referesh {
    color: #fe8002 !important;
    animation: rotateCaptcha 1s linear infinite;
}

@keyframes rotateCaptcha {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .container-slider {
        flex-direction: column;
        height: auto;
    }

    .view {
        flex-direction: column;
    }

    .section {
        width: 100%;
        padding: 30px 20px;
    }

    .content-side {
        border-radius: 15px 15px 0 0;
    }

    .form-side {
        border-radius: 0 0 15px 15px;
    }
}

/*==================== BUBBLES BACKGROUND ANIMATION START   ====================*/
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0000;
}

.bubble {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    border: 3px dotted rgb(255, 123, 0);
    background-color: white;
    animation: bubbleMove 3s linear infinite, bubbleRotate 2s linear infinite;
}

    /* --- Different sizes & positions --- */
    .bubble:nth-child(1) {
        top: -4%;
        right: -2%;
        width: 70px;
        height: 70px;
        animation-delay: 0s;
    }

/* ---- Rotate Animation ---- */
@keyframes bubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

.upper_header {
    background-color: #8f00f0;
    width: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    display: flex;
}

.text_and_logo_left {
    margin-left: 15px;
    width: 6%;
    padding: 6px 0px;
}

.text_and_logo_right {
    width: 90%;
}

    .text_and_logo_right h4 {
        padding: 14px 0px 0px 0px;
        line-height: 28px;
        color: white;
        font-size: 22px;
        font-weight: 500;
    }

    .text_and_logo_right p {
        line-height: 3px;
        color: white;
        font-weight: 500;
    }

.text_and_logo_right_home {
    right: 10px;
    width: 10%;
}

    .text_and_logo_right_home a i {
        padding: 24px;
        font-size: 25px;
        color: white;
    }

@media (max-width: 767px) {

    .upper_header {
        position: fixed;
        flex-wrap: nowrap;
        align-items: center;
        padding: 5px 10px;
        height: auto;
        z-index: 9999;
    }

    .text_and_logo_left {
        width: auto;
        margin-left: 0;
        padding: 0;
    }

        .text_and_logo_left img {
            height: 45px;
            width: 45px;
        }

    .text_and_logo_right {
        width: auto;
        flex: 1;
        padding-left: 10px;
    }

        .text_and_logo_right h4 {
            font-size: 14px;
            line-height: 18px;
            margin: 0px 0px 8px 2px;
        }

        .text_and_logo_right p {
            display: none;
        }

    .text_and_logo_right_home {
        width: auto;
    }

        .text_and_logo_right_home a i {
            font-size: 20px;
            padding: 10px;
        }

    .container-slider {
        margin-top: 90px;
    }
}
