﻿.login-title 
{
    color:#3b3f5c;
    font-size: 30px;
    font-weight:600;
    text-align:center;
}

.login-sub-title 
{
    color:#888ea8;
    font-family:'Poppins', sans-serif;
    text-align:center;
}

.txt-login 
{
    padding: 0px 15px;
    width:calc(100% - 50px);
    transition: all ease 0.2s;
    outline: 0;
    border-width: 0 0 1px;
    border: 2px solid #d8d8d8;
    border-radius: 3px;
    height: 43px;
    background-size: 20px 20px; /* Adjust size as needed */
    background-position: 5px center; /* Position the image */
    background-repeat: no-repeat;
    padding-left: 30px; /* Add padding to make space for the image */
}

.txt-login.fa-user
{
    background-image: url(../images/icons/user.png);
}

.txt-login.fa-password
{
    background-image: url(../images/icons/lock.png);
}

#login-button 
{
    appearance: none;
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 6px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    width:100%;
}

#login-button 
{
    color: #fff;
    background-color: #065465;
    border: 1px solid #003747;
}

#login-button:hover 
{
  background-color: #046276;
  border-color:#003747;
}

.div-left-section-wrapper 
{
    display:inline-block;
    width:calc(100% - 30em);
    height:100vh;
    vertical-align:top;
    position:relative;
    overflow:hidden;
}

.div-right-section-wrapper 
{
    display:inline-block;
    width:30em;
    height:100vh;
    background-color:#fffffa;
    vertical-align:top;
}

.img-login-bg 
{
    height:100%;
    position:fixed;
    right:0em;
    z-index:-1;
}

.div-mainlogo-wrap 
{
    margin-top:1em;
    margin-left:1em;
    background-color:rgba(255,255,255,0.5);
    width:15em;
    padding:1em;
    border-radius:20px;
}

.div-lbl-wrap 
{
    padding-left:3em;
    padding-right:2em;
    top:50%;
    position:absolute;
}

.div-lbl1 
{
    color:white;
    font-size:40px;
    line-height:1em;
}

.div-lbl2 
{
    color:white;
    font-size:20px;
    line-height:1em;
    margin-top:1em;
}

.lbl-checkbox-wrapper-12 
{
    padding-top:0.2em;
    display:inline-block;
    width:8em;
    vertical-align:top;
}


/*for phones*/
@media screen and (max-width:750px)
{
    .div-left-section-wrapper
    {
        width:100%;
        height:30em;
    }

    .div-right-section-wrapper
    {
        width:100%;
        height:35em;
    }

    .img-login-bg 
    {
        height:30em;
    }

    .div-mainlogo-wrap 
    {
        margin-left:auto;
        margin-right:auto;
        width:10em;
    }

    .div-lbl-wrap 
    {
        text-align:center;
        top:13em;
    }

    .div-lbl1 
    {
        font-size:25px;
    }

    .div-lbl2 
    {
        font-size:15px;
    }
}