/*login and register*/
.bg-light {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.container .container-img-login{
    height: 100%;
    width: 100%;
    border-right: 2px solid cadetblue;
}
.container .container-img-login img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}
.card-body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.form-control{
    background-color: transparent;
    color: cadetblue;
    border: none;
    border-bottom: 1px solid cadetblue;
    outline: 0;
}
.card-body a{
    margin-bottom: 20px;
}
.d-grid .btn{
    border-radius: 10px;
    padding: 10px;
}
.bg-light .hr{
    display: flex;
    justify-content: center;
    height: 2px;
    width: 100%;
    background-color: #0d6efd;
    margin-top: 10px;
}
.bg-light .hr div{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    transform: translateY(-18px);
    height: 30px;
    width: 30px;
    color: #0d6efd;
}
.btn-google{
    margin-top: 50px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    background-color: transparent;
    transition: all 0.5s;
}
.btn-google:hover{
    transform: translateY(-3px);
    background-color: white;
}
.btn-google i{
    margin-right: 10px;
}
div.col-3{
    margin-top: 10px;
    min-width: 120px;
}
.row{
    flex-wrap: nowrap;
    width: 350px;
}
.row .col-9 .form-control{
    margin-top: 10px;
    max-width: 130px;
}


@media(width <= 575px) {
    .container{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .container .container-img-login{
        width: 100%;
        height: 100%;
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .card-body{
        justify-content: center;
        align-items: center;
        flex-direction: column;
        grid-column: 1/2;
        grid-row: 1/2;
        background-color: white;
        width: 280px;
        height: 556;
        border-radius: 10px;
        margin-top: 20px;
        margin-bottom: 10px;
        padding: 20px;
    }
    .row{
        width: 100%;
    }
    .body-register .card-body{
        height: 640px;
    }
}