@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");

body {
    background-color: #f8f8f8;
    font-family: 'Roboto';
    color: #222;
}

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.border-radius {
    border-radius: 10px;
}


#bg-capa {
    background-image: url(/img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin-left: -15px;
    object-fit: cover;
}

#panel-login {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 600px) {
    #bg-capa {
        height: 20vh;
        margin-left:unset;
    }
}