/* Import fonts from google font */

@import url('https://fonts.googleapis.com/css?family=Lobster|Montserrat&display=swap');
html,
body {
    height: 100%;
    overflow: hidden;
}


/* Variables */

:root {
    --primary-gradient: linear-gradient(to right, #4e4376, #2b5876);
    --mango-gradient: linear-gradient(to right, #ffa751, #ffe259);
    --text-color: #F7F9F9;
    --Montserrat: "Montserrat", cursive;
    --Lobster: "Lobster", cursive;
    --primary-shadow: 3px 4px 7px rgba(27, 27, 27, 0.534);
    --border-color: rgba(0, 0, 0, 0.329);
}

.content {
    padding: 0;
}

.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor .panel {
    width: 100%;
    height: 100%;
    box-shadow: var(--primary-gradient);
}

.row {
    display: grid;
    grid-template-columns: 500px auto;
    height: 100%;
    background: #fff;
    margin: 0;
}

.login {
    display: table-cell;
    height: 100%;
    width: 500px;
}

.liquid {
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1023px) {
    .row {
        grid-template-columns: auto;
    }
    .liquid {
        display: none;
    }
    .login {
        width: auto;
    }
}

.owl-carousel {
    display: table-cell;
    height: 100vh;
    left: 500px;
    position: fixed;
    top: 0;
    width: calc(100% - 500px);
}

.owl-carousel .owl-item .login_img {
    float: right;
    width: 100%;
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    padding-right: 3rem;
}

.owl-dots {
    position: fixed;
    padding: 3rem 1.2rem;
    display: flex !important;
    flex-direction: column;
    transform: translateY(-240px);
}

.owl-dots button {
    border-radius: 5rem;
    margin: .3rem 0;
}

.owl-dots button span {
    background: var(--text-color) !important;
    margin: 0rem .6rem !important;
}

.owl-dots .active {
    border: 1px solid #ffd765 !important;
}

.owl-dots .active span {
    background: #ffd765 !important;
    margin: .3rem .5rem !important;
}