﻿body {
    font-family: "Poppins", sans-serif;
    /*font-size: 0.8125rem;*/
}

.login-container {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    background-image: url('/assets/images/login-bg.jpeg');
    background-size: cover;
    background-position: right;
}

@media (min-width: 992px) {
    .login-container {
        background-position: center;
    }
}

.form-container {
    width: 90vw;
    margin: auto;
    /* background-image: linear-gradient(0deg, #91c8e3, #fff); */
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0px 0px 5px 0px #00000025;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 992px) {
    .form-container {
        width: 24vw;
        margin-left: 10vw;
    }
}

.client-logo img {
    height: 50px;
}

.login-heading {
    font-size: larger;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-top: 8px;
}

.login-sub-heading {
    font-size: small;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}

.login-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.input-sec {
    position: relative;
}

.user-name {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 3px;
    padding: 6px 10px;
    /*padding: 8px 13px;*/
    padding-left: 50px;
    background: #EFF1F4;
}

.password {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 3px;
    padding: 6px 10px;
    /*padding: 8px 13px;*/
    padding-left: 50px;
    background-color: #EFF1F4;
    border-radius: 6px;
}

.user-name-lbl {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(-50%, -50%);
    color: #1A76D1;
}

.password-lbl {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(-50%, -50%);
    color: #1A76D1;
}

.login-button {
    width: 100%;
    text-align: center;
}

    .login-button button[type=submit] {
        width: 70%;
        border-radius: 5px;
        padding: 5px;
        padding: 6px;
        border: 1px solid #ffffff;
        background: linear-gradient(90.07deg, #1A76D1 0.1%, #90D454 99.98%);
        outline: none;
        color: #fff;
        font-weight: 500;
        box-shadow: 0px 10px 24px 0px #3949F873;
    }

.forgot-pass a {
    color: #0098f0;
    font-size: 12px;
}

.developed-by {
    color: gray;
    font-size: smaller;
}

    .developed-by a {
        font-weight: 600;
        color: #747474;
    }

.forgot-pass {
    width: 100%;
    text-align: end;
}

label.lbl {
    font-weight: 500;
    margin-bottom: 0.2rem;
}

img.prd-logo {
    height: 50px;
    position: absolute;
    top: 4vh;
    right: 4vw;
}

.login-text {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

img.wel-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -75px;
    width: calc(100% + 150px);
    z-index: -1;
}
