/* POPPINS FONT */
/*  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');*/

/*.login *{
    font-family: 'Poppins', sans-serif;
}*/
.login .wrapper {
    background: #ececec;
    padding: 0 20px 0 20px;
}

.login .main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login .side-image {
    background-image: url("../../files/images/stock.jfif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px 0 0 10px;
    position: relative;
}

.login .row {
    width: 80vw;
    height: 90vh;
    border-radius: 10px;
    /*  background: #fff;*/
    padding: 0px;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
}

.login .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login .text p {
    color: #fff;
    font-size: 20px;
}

.login i {
    font-weight: 400;
    font-size: 15px;
}

.login .right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login .input-box {
    width: 330px;
    box-sizing: border-box;
}

.login img {
    width: 35px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.login .input-box header {
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
}

.login .input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
}

.login .input {
    height: 45px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    margin-bottom: 20px;
    color: #40414a;
}

.login .input-box .input-field label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
}

.login .input-field input:focus~label {
    top: -10px;
    font-size: 13px;
}

.login .input-field input:valid~label {
    top: -10px;
    font-size: 13px;
    color: #5d5076;
}

.login .input-field .input:focus,
.input-field .input:valid {
    border-bottom: 1px solid #743ae1;
}

.login .submit {
    border: none;
    outline: none;
    height: 45px;

    border-radius: 5px;
    /*    transition: .4s;*/
    background: rgba(37, 95, 156, 0.937);
    color: #fff;
    cursor: pointer;
}

/* .submit:hover{
    background: rgba(37, 95, 156, 0.937);
    color: #fff;
 }*/
.login .signin {
    text-align: center;
    font-size: small;
    margin-top: 25px;
}

.login span a {
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: .5s;
}

.login span a:hover {
    text-decoration: underline;
    color: #000;
}

.login .submit:disabled,
.login .submit[disabled] {
    cursor: not-allowed;
    background: #ececec;
    color: #333;
}

@media only screen and (max-width: 768px) {
    .login .side-image {
        border-radius: 10px 10px 0 0;
    }

    img {
        width: 35px;
        position: absolute;
        top: 20px;
        left: 47%;
    }

    .login .text {
        position: absolute;
        top: 70%;
        text-align: center;
    }

    .login .text p,
    i {
        font-size: 16px;
    }

    .login .row {
        max-width: 420px;
        width: 100%;
    }
}



.carousel-inner {
    height: 100vh;
    max-height: 100vh;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    position: relative;
    z-index: 1;

}

/* Light blue overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 100, 0.7);
    /* Light blue with transparency */
    z-index: 2;
}

/* Navigation buttons above overlay */
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
    z-index: 10;
}

.carousel-caption,
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
    z-index: 4;
}


/* Fixing canvas */

/*canvas {
    height: 100% !important;
}*/