﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
    background-color: #fafafa !important;
}

main {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.MainPnl {
    display: flex; 
    flex-direction: row; 
    width: 100%;
    height: 100vh;
    overflow: hidden; 
    box-sizing: border-box; 
}

.loginPnl {
    max-width: 500px;
    width: 100%;
    padding: 55px 40px 55px 40px !important;
    border-radius: 10px !important
}

.CompanyName {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: grey;
}

.ChoicePlan{
    border-style: solid;
    border-width: 1px;
    border-color: white;
    background-color: white;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    width: 200px;
    margin-top: 40px;
    font-size:13px
}

input:not([type="checkbox"]) {
    background-color: whitesmoke;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    border-style: none !important;
}

.RememberMePnl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 17px;
}

.LoginField {
    background-color: whitesmoke !important;
    -webkit-appearance: textfield !important;
    box-shadow: none !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-color: black !important;
    font-size: 13px;
    padding: 4px 12px 8px 8px;
    height: 34px;
    border-radius: 5px !important;
    width: 100%;
}

.emailIcon {
    position: absolute;
    left: 10px;
    top: 55%;
    transform: translateY(-50%);
    font-size: 0.85em;
}

.emailIcon{
    height: 28px;
    margin-top:4px !important;
    margin-right: 3px;
    margin-left: 1px;
}

.FormLbl {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 13px
}

.rememberMeLbl{
    font-size:13px;
    margin-top:-10px
}

.forgottenPassword {
    font-size: 13px;
    color: #03479b;
    text-decoration:none;
    margin-top:-8px;
}

.alertMsg{
    font-size: 13px;
    padding: 10px;
    text-align: center;
    margin-top: 13px;
}

.submitBtn {
    background-color: #03479b;
    border-radius: 8px;
    padding: 12px 16px;
    border: none;
    font-size: 14px !important;
}

.full-height-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.emailIcon{
    top:60%;
}

@media screen and (max-width: 1024px) {
    .MainPnl {
        flex-direction: column; 
    }

    .login-left {
        width: 100%; 
        padding: 60px 150px; 
    }

    .login-right {
        display: none; 
    }
}

@media screen and (max-width: 700px) {
    .login-left {
        width: 100%;
        padding: 40px;
    }

    .login-right {
        display: none;
    }

    .RememberMePnl {
        display: block;
    }
    
    .ForgotPasswordPnl{
        margin-top: 10px;
    }
    
    .CompanyName{
        display: none;
    }

    .login-left-sub {
        width: 320px;
    }
}