﻿@font-face {
    src: url('../fonts/Poppins-Medium.ttf');
    font-family: 'Poppins';
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins !important;
}

a {
    text-decoration: none !important;
}

/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-animation: autofill 0s forwards;
    animation: autofill 0s forwards;
    -webkit-text-fill-color: #555 !important;
}


@keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
    }
}

@-webkit-keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

hr {
    margin: 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.wave {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.login-container {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 7rem;
    padding: 0 2rem;
}

img .gif {
    visibility: hidden;
    max-width: 300px;
    max-height: 300px;
}

.jsgif {
    max-width: 300px;
    max-height: 300px;
}

    .jsgif canvas {
        max-width: 200px !important;
        max-height: 200px !important;
    }

.login-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-left: 100px;
}

.login-img img {
    width: 500px;
}

.exs-img {
    height: 80px;
}

.mb-c {
    margin-bottom: 0.3rem !important;
}

form {
    width: 360px;
    margin-bottom: 50px;
}

.login-content h2 {
    margin: 15px 0;
    color: #333;
    text-transform: uppercase;
    font-size: 2.9rem;
}

.login-content .input-div {
    position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

    .login-content .input-div.one {
        margin-top: 0;
    }

.i {
    color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .i i {
        transition: .3s;
    }

.input-div > div {
    position: relative;
    height: 45px;
}

    .input-div > div > h5 {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 18px;
        transition: .3s;
    }

.input-div:before, .input-div:after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #308BE6;
    transition: .4s;
}

.input-div:before {
    right: 50%;
}

.input-div:after {
    left: 50%;
}

.input-div.focus:before, .input-div.focus:after {
    width: 50%;
}

.input-div.focus > div > h5 {
    top: -5px;
    font-size: 15px;
}

.copyright-lbl {
    font-size: 10pt;
    color: #999;
}

.input-div.focus > .i > i {
    color: #308BE6;
}

.input-div > div > input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: 1.2rem;
    color: #555;
    font-family: 'poppins', sans-serif;
}

.input-div.pass {
    margin-bottom: 4px;
}

a {
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
}

    a:hover {
        color: #308BE6;
    }

.login-btn {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #425ce1, #308BE6, #425ce1);
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

    .login-btn:hover {
        background-position: right;
    }

    .login-btn:focus {
        background-position: right;
    }

.link-forgot-pass {
    margin-bottom: 31px;
    font-size: 11pt;
    color: #555;
}
    .link-forgot-pass:hover {
        color: #3699ff;
    }

.cookie-policy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: #efefef;
    display: none;
}

    .cookie-policy button {
        width: 250px;
    }

.validation {
    color: firebrick;
}

.mb-3 {
    margin-bottom: 3%;
}

.mb-5 {
    margin-bottom: 5%;
}

.mb-10 {
    margin-bottom: 10%;
}

@media screen and (max-width: 1050px) {
    .login-container {
        grid-gap: 5rem;
    }
}

@media screen and (max-width: 1000px) {
    form {
        width: 290px;
    }

    .login-content h2 {
        font-size: 2.4rem;
        margin: 8px 0;
    }

    .login-img img {
        width: 400px;
    }
}

@media screen and (max-width: 900px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .login-img {
        display: none;
    }

    .wave {
        display: none;
    }

    .login-content {
        justify-content: center;
        padding-left: 0;
    }

    .copyright {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
    }
}

