* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    padding: 0;
}

@-webkit-keyframes tracking-in-expand {0% {letter-spacing: -0.5em;opacity: 0;}40% {opacity: 0.6;}100% {opacity: 1;}}

@keyframes tracking-in-expand {0% {letter-spacing: -0.5em;opacity: 0;}40% {opacity: 0.6;}100% {opacity: 1;}}

@-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}

.fade-in-an{-webkit-animation:fade-in 1.2s cubic-bezier(.39,.575,.565,1.000) both;animation:fade-in 1.2s cubic-bezier(.39,.575,.565,1.000) both}

.cbo-login-form-container{
    height: 100vh;
    background-color: white;
    padding: 0;
}
.cbo-login-form{
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    transform: translate(0, -50%);
    background-color: white;
    padding: 50px 15px;
    border-radius: 12px;
}

.cbo-login-title{
    text-align: center;
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    margin-bottom: 3rem;
}

.cbo-login-title img{
    width: 48px;
}
.cbo-login-title p{
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
}

.cbo-login-image-container{
    height: 100vh;
    background: linear-gradient(to right bottom, var(--primary-color), #515151);
}
.cbo-login-image{
    height: 100%;
    width: 100%;
    background-image: url('/public/img/bg-login1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
#btn-login{
    background-color: var(--primary-color);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .cbo-login-form{
        left: 17.5%;
        width: 65%;
        padding: 100px 30px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .cbo-login-form{
        left: 7.5%;
        width: 85%;
        padding: 100px 30px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .cbo-login-form{
        left: 12.5%;
        width: 75%;
        padding: 100px 30px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .cbo-login-form{
        left: 7.5%;
        width: 85%;
        padding: 80px 20px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .cbo-login-form{
        left: 17.5%;
        width: 65%;
        padding: 100px 30px;
    }
}
