﻿/* default colors */
:root {
    --light-gray: #e5e5e5;
    --light-gray2: #7F7F7F;
    --lenos-blue: #027ade;
    --lenos-blue-hover: #05589c;
    --lenos-light-blue: #4ba0f7;
    --purple: #7030A0;
    --light-purple: #e0c2fc;
    --text-dark-grey: #242424;
    --text-grey: #6D6D6D;
}

/* font setup */

@font-face {
    font-family: "Poppins";
    src: url("PoppinsFonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "PoppinsLight";
    src: url("PoppinsFonts/Poppins-Light.ttf");
}

@font-face {
    font-family: "PoppinsThin";
    src: url("PoppinsFonts/Poppins-thin.ttf");
}

@font-face {
    font-family: "PoppinsBold";
    src: url("PoppinsFonts/Poppins-Bold.ttf");
}


@font-face {
    font-family: "PoppinsSemiBold";
    src: url("PoppinsFonts/Poppins-SemiBold.ttf");
}

@font-face {
    font-family: "PoppinsExtraBold";
    src: url("PoppinsFonts/Poppins-ExtraBold.ttf");
}

/* animations */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flyInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flyInTop {
    0% {
        opacity: 0;
        transform: translateY(-30%);
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: Poppins, Arial, sans-serif;
}

#login-page {
    width: 100%;
    min-height: 100vh;
    background: var(--light-gray);
    display: flex;
    margin: 0;
}

.login-page-container {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "left-container right-container";
    height: 100vh;
    width: 100%;
    max-height: 700px;
    max-width: 1200px;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s linear forwards;
}

.left-container {
    display: grid;
    grid-template-columns: 85%;
    grid-template-rows: 70%;
    gap: 0px 0px;
    grid-auto-flow: row;
    justify-content: center;
    align-content: center;
    grid-template-areas:
        "promo-container";
    grid-area: left-container;
    background-image: linear-gradient( 40deg, hsl(274deg 54% 41%) 0%, hsl(260deg 45% 47%) 21%, hsl(244deg 45% 53%) 34%, hsl(229deg 55% 54%) 45%, hsl(218deg 66% 52%) 53%, hsl(207deg 98% 44%) 61%, hsl(208deg 80% 50%) 68%, hsl(208deg 81% 54%) 75%, hsl(207deg 84% 58%) 82%, hsl(207deg 87% 62%) 89%, hsl(206deg 91% 66%) 100% );
}

.promo-container {
    grid-area: promo-container;
}

.right-container {
    display: grid;
    grid-template-columns: 80%;
    grid-template-rows: 83%;
    gap: 0px 0px;
    grid-auto-flow: row;
    justify-content: space-around;
    align-content: space-around;
    grid-template-areas:
        "login-container";
    grid-area: right-container;
    background-color: white;
    text-align: center;
}

.login-container {
    grid-area: login-container;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.login-img img {
    width: 100%;
    opacity: 0;
}

@media (max-width: 1220px) {
    .login-page-container {
        margin: auto 10px;
    }
}

@media (max-width: 992px) {
    .login-page-container {
        grid-template-columns: 0fr 1fr;
        max-width: 500px;
        margin: auto;
    }

    .left-container {
        display: none;
    }
}

@media (max-width: 576px) {
    .login-page-container {
        margin: auto 15px;
    }
}

.laptop-img img {
    animation: flyInTop 1s ease-in-out 0s forwards;
}

.reports-1-img img {
    animation: fadeIn 0.5s ease-in-out 1.3s forwards;
}

.catchphrase {
    animation: flyInLeft 1s ease-in-out 0.6s forwards;
}

.reports-2-img img {
    animation: fadeIn 0.5s ease-in-out 1s forwards;
}

.promo-container {
    display: grid;
    grid-template-columns: 2.3fr 1.8fr .6fr 1.9fr 0.3fr;
    grid-template-rows: 2.1fr 0.27fr 2.4fr 1.3fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    width: 100%;
    max-width: 1000px;
    max-height: 400px;
    margin: 0 auto;
}

.laptop-img {
    grid-area: 1 / 2 / 4 / 5;
}

.reports-1-img {
    grid-area: 2 / 1 / 5 / 3;
    z-index: 3;
}

.reports-2-img {
    grid-area: 3 / 4 / 5 / 6;
    z-index: 3;
}

.catchphrase {
    color: var(--light-purple);
    font-family: PoppinsSemiBold, Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2em;
    transition: font-size 0.5s ease;
    opacity: 0;
}

.login-box {
    max-width: 300px;
    margin: auto;
}

    .login-box table {
        width: 100%;
    }

.hidden {
    display: none;
}

.login-cell {
    display: flex;
    position: relative;
    padding-bottom: 5px;
}

    .login-cell input {
        width: 100%;
        padding: .75em;
        outline: 0;
        border: 0;
        background-color: #e8f0fe;
        border-top-right-radius: .25em;
        border-bottom-right-radius: .25em;
        font-family: PoppinsLight, Arial, sans-serif;
        font-size: 1em;
    }

input[type="submit"].login-button {
    width: 100%;
    padding: .75em;
    border: 0;
    outline: 0;
    border-radius: .25em;
    background-color: var(--lenos-blue);
    color: white;
    font-family: Poppins, Arial, sans-serif;
    font-size: 1.1em;
    transition: background-color .2s, color .2s;
}

    input[type="submit"].login-button:hover {
        background-color: var(--lenos-blue-hover);
        cursor: pointer;
    }

#Login1_PasswordRequired, #Login1_UserNameRequired {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    padding: .75em;
    font-family: Poppins, Arial, sans-serif;
    font-size: 1em;
}


.logo-blue {
    text-align: center;
    padding-bottom: 70px;
}

.reset-link-container {
    text-align: center;
    padding-top: 10px;
}

#reset_link {
    color: var(--lenos-light-blue);
    transition: color .2s;
    text-decoration: none;
}

    #reset_link:hover {
        color: var(--purple);
    }

.copyright {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    font-size: .75em;
    padding-bottom: 1em;
    color: var(--light-gray2);
}

.emc-text {
    font-family: PoppinsBold, Arial, sans-serif;
    font-size: 1.25em;
    color: var(--text-dark-grey);
}

.all-program-types {
    font-family: PoppinsSemiBold, Arial, sans-serif;
    font-size: 1em;
    color: var(--text-grey);
}

.icon-container {
    padding: .75em;
    background-color: var(--lenos-blue);
    border-top-left-radius: .25em;
    border-bottom-left-radius: .25em;
}

.icon {
    color: white;
}

#password-icons.icon-container {
}

#password-icons #password-icon-spinner {
    position: relative;
    width: 20px;
    height: 25px;
}

#password-icons .icon {
    position: absolute;
    transition: opacity .2s;
}

.iconHide {
    opacity: 0;
}

#hidePassword, #showPassword {
    left: 1px;
}

/* update password */

.changePassword-Body {
    background-image: linear-gradient( 40deg, hsl(274deg 54% 41%) 0%, hsl(260deg 45% 47%) 21%, hsl(244deg 45% 53%) 34%, hsl(229deg 55% 54%) 45%, hsl(218deg 66% 52%) 53%, hsl(207deg 98% 44%) 61%, hsl(208deg 80% 50%) 68%, hsl(208deg 81% 54%) 75%, hsl(207deg 84% 58%) 82%, hsl(207deg 87% 62%) 89%, hsl(206deg 91% 66%) 100% );
    background-size: 100% 100%;
    height: 100vh;
    display: grid;
}

.changePassword-container {
    max-width: 400px;
    width: 100%;
    background-color: white;
    padding: 2em;
    border-radius: 15px;
    margin: auto;
}

.changePassword-Body td.GridHeader {
    text-align: center;
}

.changePassword-Body .copyright {
    text-align: center;
    color: var(--light-gray);
}

.changePassword-Body .logo-blue {
    padding-bottom: 50px;
}

.looksLikeInput {
    padding: .75em !important;
    box-shadow: none !important;
    margin: 0px !important;
}

#ChangePassword1_TextBoxNew, #ChangePassword1_TextBoxConfirm {
    padding: .75em;
}

.changePassword-Body .Label {
    text-align: right !important;
}

#ChangePassword1_RequiredFieldValidator2, #ChangePassword1_RequiredFieldValidator3 {
    display: block;
    transform: translate(-10px, -22px);
}
