﻿:root {
    --two-color: #5755FE;
}

body {
    background-color: rgba(255, 255, 255, 0.00);
}

.slider_container {
    overflow: hidden;
    position: fixed;
    top: 0px;
    bottom: 0px;
    height: 100%;
    width: 50%;
    box-sizing: border-box;
    background-color: white;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.login_content {
    height: 100%;
}

.login-conatiner {
    position: relative;
    margin-top: 5%;
    padding: 10px;
    max-width: 450px;
    border-radius: 7px;
    box-sizing: border-box;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.btn-color {
    font-weight: 700;
    width: 100%;
    padding: 5px;
    color: white;
    border: 2px solid var(--two-color);
    background-color: var(--two-color);
}

    .btn-color:hover, .btn-color:focus, .btn-color:active {
        color: var(--two-color);
        border: 2px solid var(--two-color);
    }

.l_logo {
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
}

.form-control {
    border: none;
    box-sizing: border-box;
    border-radius: 5px;
}

/*.form-control .label {
        font-weight: 700;
        padding: 0;
        margin: 0;
    }*/

.input {
    width: 100%;
    padding: 5px;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--two-color);
}


    .input:focus, .input:active {
        border-radius: 5px;
        box-shadow: var(--two-color) 0px 0px 0px 3px;
    }

.input_box_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.l_c_foot {
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a_foot {
    color: black;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.00);
}

    .a_foot:hover, .a_foot:focus, .a_foot:active {
        color: var(--two-color);
    }


@media (max-width: 1000px) {
    .slider_container {
        display: none;
    }

    #carouselExample, .carousel, .carousel-inner, carousel-item {
        display: none;
    }

    .login_content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin: auto;
        height: 100%;
        position: fixed;
        top: 0px;
        bottom: 0px;
        right: 0px;
        left: 0px;
    }
}
