﻿:root {
    --main-bg-color: #efefef;
    --main-text-color: #444;
    --main-box-shadow: -6px -6px 14px rgba(255, 255, 255, 0.7), -6px -6px 10px rgba(255, 255, 255, 0.5), 6px 6px 8px rgba(255, 255, 255, 0.075), 6px 6px 10px rgba(0, 0, 0, 0.15);
    --main-box-shadow-hover: -2px -2px 6px rgba(255, 255, 255, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.4), 2px 2px 2px rgba(255, 255, 255, 0.05), 2px 2px 4px rgba(0, 0, 0, 0.1);
    --main-textfield-focus-shadow: inset -2px -2px 1px 0px rgba(255, 255, 255, 0.7), inset -3px -3px 5px rgba(255, 255, 255, 0.5), inset 3px 3px 4px 0px rgba(255, 255, 255, 0.075), inset 3px 3px 5px 0px rgba(0, 0, 0, 0.15);
    --main-textfield-enabled-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), -2px -2px 4px rgba(255, 255, 255, 0.5), 2px 2px 4px rgba(255, 255, 255, 0.075), inset 2px 2px 4px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
}

.loginPage {
    background-repeat: no-repeat;
    background-position: center;
}

.header {
    margin-bottom: 8px;
    box-shadow: 4px 1px 8px rgba(0, 0, 0, 0.1);
}

.acer__logo--subtext {
    margin: 0;
    line-height: 100%;
    font-size: 12px;
    padding-left: 32px;
    color: #a1a1a1;
    font-style: italic;
    font-weight: 400;
}

.login-wrapper {
    height: 82.5vh;
    margin: 0 44px;
    gap: 8px;
}

.footer {
    height: 4.5vh;
}

.slider {
    display: flex;
    width: 44vw;
}

.slick-initialized {
    width: 54.6vw;
    height: 82.5vh;
}

.slick-dotted.slick-slider {
    margin: 0;
}

.prev,
.next {
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    padding: 0;
}

.prev {
    left: 8px;
}

.next {
    right: 51%;
}

.prev::before {
    content: url("./icon/angle-left-solid.svg");
    display: inline-block;
    height: 12px;
    width: 12px;
    fill: #ffffff;
}

.next::before {
    content: url("./icon/angle-right-solid.svg");
    display: inline-block;
    height: 12px;
    width: 12px;
    fill: #ffffff;
}

.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    max-width: 100%;
}

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

        .slick-dots li.slick-active button:before {
            color: #ffffff;
        }

        .slick-dots li button:before {
            color: #ffffff;
        }

    .slick-dots li {
        margin: 0;
    }

.login-form {
    background-color: #ffffff;
}

label {
    font-size: 14px;
}

form h4 {
    color: #80c343;
}

span {
    color: #d63024;
    font-size: 12px;
    padding-left: 2px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    font-size: 14px;
}

.refresh_button {
    border: none;
    width: auto;
    padding: 13px;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    margin-left: 15px;
}

.refresh_button {
    background-color: #80c343;
}

    .refresh_button:hover {
        background-color: #80c343;
        box-shadow: var(--main-box-shadow-hover);
    }

.canvas {
    border: 1px var(--main-text-color) solid;
}

#textCanvas {
    display: none;
}

.chaptcha_image {
    padding-top: 10px;
    border: 1px dashed var(--main-text-color);
    padding: 4px 32px;
}

.submit-button {
    width: 32vw;
    background-color: #80c343;
    border-color: #80c343;
}

    .submit-button:hover {
        background-color: #80c343;
        border-color: #80c343;
    }

.forgot-password {
    color: #000000;
}

.footer-text {
    font-size: 14px;
    font-family: Arial;
    margin: 4px 0;
}

/* navbar */

.navbar {
    background-color: #ffffff;
    padding: 0;
    z-index: 98;
}

.navbar-light .navbar-nav .nav-link {
    color: #4b4b4b;
    font-weight: 600;
    font-family: "Noto Sans", "Open Sans", Roboto, "Helvetica Neue", Arial, Sans-Serif;
    font-size: 14px;
}

    .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:hover {
        color: #80c343;
    }

.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-toggler {
    border: none;
}

.nav-item {
    min-width: 100px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: normal;
}

.navbar-collapse.collapsing .navbar-nav-main {
    display: block;
    position: fixed;
    top: 0%;
    bottom: 0;
    right: -70%;
    transition: all 0.2s ease;
}

.navbar-collapse {
    flex-grow: 0;
}

button:focus {
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

#captchaContainer {
    border: 1px dashed var(--main-text-color);
}

@media only screen and (max-width: 549px) and (min-width: 375px) {
    .navbar-brand {
        padding: 20px 40px;
    }

    .nav-ul {
        background-color: rgb(253, 253, 253);
    }
}

/* @media only screen and (max-width: 767px) and (min-width: 200px) { */
@media only screen and (max-width: 767px) {
    .navbar-brand {
        padding-left: 20px;
    }

    .navbar-collapse.show .navbar-nav-main {
        width: 70% !important;
        background-color: #fff !important;
    }

    .nav-item {
        font-size: 16px;
        padding: 16px 10px;
    }

    .nav-ul {
        background-color: rgb(253, 253, 253);
    }

    .navbar-nav-sub {
        display: none;
    }

    .submit-button {
        width: 50vw;
    }

    .carousel-card {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-collapse.show .navbar-nav-main {
        position: fixed;
        top: 0%;
        bottom: 0;
        right: 0;
        flex-direction: column;
        height: auto;
        width: 60%;
        box-shadow: 0 0.5rem 2rem rgb(14 12 12);
        background-color: #fff !important;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        transition: left 430ms ease-in-out;
    }

    .nav-item {
        border-bottom: 1px solid #f5f5f5;
        text-transform: capitalize;
    }

    .navbar-nav-sub {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 16px;
    }

    .login-wrapper {
        height: 81vh;
    }

    .slick-initialized {
        width: 53vw;
        height: 81vh;
    }

    .slick-image {
        min-height: 481px;
    }
}

@media only screen and (min-width: 992px) {
    .navbar-brand {
        padding: 0px 32px;
        margin-top: -2px;
        margin-right: 1.5rem;
    }

    .nav-item-close {
        display: none;
    }

    .nav-item {
        padding: 1.2rem 0.6rem;
    }

    .navbar-nav .nav-link {
        text-transform: uppercase;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
    }

    .hp-dropdown-menu {
        box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
        padding: 20px 30px;
        margin-top: -10px;
    }

        .hp-dropdown-menu a {
            font-size: 0.9rem !important;
            text-transform: uppercase !important;
            font-weight: 600;
            font-family: "Noto Sans", "Open Sans", Roboto, "Helvetica Neue", Arial, Sans-Serif;
        }

    .slick-initialized {
        width: 54.6vw;
        height: 82.5vh;
    }
}
