body{
    font-family: "Karla", sans-serif;
    background-color: #fff;
    min-height: 100vh;
    /* overflow: hidden; */
    overflow-x: hidden;
}

main{
    overflow-x: hidden;
    /* overflow: hidden; */
}

.topBar {
    height: 20vh;
    background-color: #0ea6e2;
    top: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.bottomBar{
    height: 20vh;
    background-color: #0ea6e2;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.login_card {
    border-radius: 2rem;
    box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);
    /* overflow: hidden; */
    width: 80vw;
    height: auto;
}

.straightBar {
    width: 70px;
    transform: rotate(90deg);
    border-color: #10a5e0;
}

.logo_img{
    width: 250px;
}

.login_btn {
    padding: 9px 0;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    background: #10a5e0;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}


.social_icon {
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    cursor: pointer;
}

.other_logos .first_img{
    width: 170px;
}

.other_logos .second_img{
    width: 100px;
}

.footer_logo{
    width: 120px;
}

@media (max-width: 1199.98px) {
    .other_logos .first_img{
        width: 120px;
    }
    
    .other_logos .second_img{
        width: 90px;
    }
}

@media (max-width: 767.98px) {
    .other_logos .first_img{
        width: 120px;
    }
    
    .other_logos .second_img{
        width: 90px;
    }

    .straightBar {
        width: 50px;
        transform: rotate(90deg);
        border-color: #10a5e0;
    }
}