a,
a:hover,
a:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: 0 solid !important;
    text-decoration: none;
}

a {
    transition: 0.3s;
    color: #4D4D4D;
}
button {
    transition: 0.4s;
}


.fixed-auth-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.fixed-auth-left-area {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 40%;
    justify-content: center;
    padding-left: 8%;
}

.fixed-auth-left-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.fixed-auth-left-logo, .fixed-auth-left-text {
    position: relative;
    z-index: 2;
}

.fixed-auth-left-bg img {
    width: 100%;
    height: 100%;
}

.fixed-auth-left-logo a {
    display: inline-block;
}

.fixed-auth-left-logo img {
    height: 70px;
    filter: brightness(0) invert(1);
}

.fixed-auth-left-text {
    color: #fff;
    margin-top: 80px;
}

.fixed-auth-left-text h3 {
    text-transform: uppercase;
    font-weight: 600;
}

.fixed-auth-left-text p {
    margin: 0;
    font-size: 19px;
}

.fixed-auth-right-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding-right: 7%;
    overflow: hidden;
    overflow-y: auto;
}

.form-outer.auth-form h2 {
    font-size: 27px;
    text-transform: uppercase;
    font-weight: 700;
}

.form-outer.auth-form h3 {
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group-material {
    margin-bottom: 18px;
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper input {
    width: 100%;
    border-radius: 50px;
    border: none;
    background: #fff;
    height: 40px;
    padding: 4px 20px;
    padding-left: 45px;
    box-shadow: 0 3px 10px #ddd;
    border: 1px solid #e8e8e8 !important;
}
.form-input-wrapper input:focus {
    box-shadow: 0 5px 20px #ddd;
}

.form-input-wrapper i.fa {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #222;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}


button.btn-submit {
    background: #15a0d6;
    background: -moz-linear-gradient(left,  #15a0d6 0%, #33b1d9 100%);
    background: -webkit-linear-gradient(left,  #15a0d6 0%,#33b1d9 100%);
    background: linear-gradient(to right,  #15a0d6 0%,#33b1d9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#15a0d6', endColorstr='#33b1d9',GradientType=1 );
    color: #fff;
    width: 100%;
    border-radius: 50px;
    height: 40px;
    border: none;
    box-shadow: 0 3px 10px #ddd;
    cursor: pointer;
}
button.btn-submit:hover {
    background: #029bd3;
    background: -moz-linear-gradient(left,  #029bd3 0%, #17abd8 100%);
    background: -webkit-linear-gradient(left,  #029bd3 0%,#17abd8 100%);
    background: linear-gradient(to right,  #029bd3 0%,#17abd8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#029bd3', endColorstr='#17abd8',GradientType=1 );
    color: #fff;
    box-shadow: 0 5px 20px #ddd;
}
.auth-footer {
    margin-top: 20px;
    font-size: 14px;
}

.auth-footer a {
    color: #1298ca;
    font-weight: 600;
}


.auth-copyright-text {
    position: absolute;
    bottom: 10px;
}

.form-group-material p strong {
    color: #e21515;
    font-size: 12px;
}
.fixed-auth-left-bg.mobile {
    display: none;
}



/* HD Layout: 1920px. */
@media only screen and (min-width: 1601px) and (max-width: 2200px) {}

/* Laptop with HDPI: 1440px */
@media only screen and (min-width: 1400px) and (max-width: 1600px) {}

/* Nrmal PC: 1366px */
@media only screen and (min-width: 1301px) and (max-width: 1399px) {}

/* Laptop with MDPI: 1280px */
@media only screen and (min-width: 1201px) and (max-width: 1300px) {}

/* Medium Layout(iPad Pro): 1024px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) {}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fixed-auth-left-area {
        width: 56%;
    }
}

/* Mobile Layout: 375px. */

@media only screen and (max-width: 767px) {
    .fixed-auth-area {
        flex-direction: column;
        justify-content: center;
    }
    .fixed-auth-left-area,
    .fixed-auth-right-area {
        width: 100%;
        padding: 0;
    }
    .fixed-auth-right-area {
        margin-top: 110px;
    }
    .fixed-auth-left-area {
        text-align: center;
        align-items: center;
    }
    .fixed-auth-left-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 55%;
        z-index: 1;
    }
    .fixed-auth-left-text {
        margin-top: 35px;
    }
    .fixed-auth-left-bg {
        display: none;
    }

    .fixed-auth-left-bg.mobile {
        display: block;
    }
}

/* Wide Mobile Layout(Nexus 7): 600px. */
@media only screen and (max-width: 610px) {}

/* Wide Mobile Layout: 480px. */
@media only screen and (max-width: 500px) {}

/* Mobile Layout(Samsung Galaxy S5): 360px. */
@media only screen and (max-width: 370px) {}

/* Mobile Layout(iPhone 4): 320px. */
@media only screen and (max-width: 330px) {}
