/* ===============================
   GLOBAL
   =============================== */
body {
    background-color: #ef7e2e;
    margin: 0;
}

.container-login-right h5,
.container-login-right label,
.container-login-right .copyright {
    color: #ffffff;
}

.container-login-right h5 {
    text-align: center;
}

.container-login-right .form-group label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ===============================
   FORM
   =============================== */
.container-login-right .form-control {
    border-radius: 6px;
    font-size: 0.95rem;
}

.container-login-right .form-control::placeholder {
    font-size: 0.9rem;
}

.container-login-right .form-control:focus {
    box-shadow: none;
    border-color: #ef7e2e;
}

/* ===============================
   BUTTON LOGIN
   =============================== */
.container-login-right .login-button {
    border-radius: 6px;
    background-color: #ffffff;
    color: #d6651f;
    border: none;
    transition: all .3s ease;
}

.container-login-right .login-button:hover {
    background-color: #f5f5f5;
    color: #d6651f;
}

/* ===============================
   COPYRIGHT
   =============================== */
.container-login-right .copyright {
    font-size: 0.75rem;
    margin-top: 30px;
    text-align: center;
    opacity: 0.9;
}

/* ===============================
   LOGO
   =============================== */
.login-logo img {
    width: 100px;
    margin-top: 50px;
}

/* ===============================
   LEFT SLIDER
   =============================== */
.container-login-left {
    height: 100vh;
}

.owl-carousel .item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.owl-dots {
    display: none;
}

.login-button{
    background-color: #1f2937 !important; /* dark slate */
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s ease-in-out;
}

.login-button:hover{
    background-color: #111827 !important;
}

.login-button:focus{
    box-shadow: 0 0 0 0.2rem rgba(31,41,55,.35);
}

/* ===============================
   RESPONSIVE
   =============================== */

/* MOBILE */
@media (max-width: 767.98px) {
    .container-login-left {
        display: none;
    }

    .container-login-right {
        padding: 0 40px;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container-login-right {
        padding: 0 20px;
    }
}

/* DESKTOP */
@media (min-width: 992px) {
    .container-login-right {
        padding: 0 50px;
    }
}
