/* SMALL SCREEN CSS START */
.login-content-small{
    display: grid;
    background-image:url('../img/GSouth.jpg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    width:100%;
    height:100vh;
}

.login-content-small .login-box-small{
    position: relative;
    margin: auto;
    width:600px;
    background-color: white;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 10px;
    padding:20px 40px;
    animation-name: top;
    animation-duration: 0.5s;
}
.login-box-small .small-logo{
    position: relative;
    text-align: center;
    margin-top : -130px !important;
    margin-bottom: 15px;
}
.login-box-small .small-logo img{
    width:100px;
    height:100px;
    margin-bottom: 40px;
}
.login-box-small .small-logo h2{
    line-height: 15px;
    color:#0d6efd;
    font-size: 50px;
    padding-bottom:10px;
    text-shadow: 2px 2px rgba(0,0,0,0.8);
}.login-box-small .small-logo label{
    font-weight: 500;
    text-shadow: 2px 2px rgba(0,0,0,0.3);
    font-size: 32px;
    padding:0px 5px;
    border: 1px solid white;
    border-radius: 2px;
    color: white;
    background-color: red;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 2px;
}.login-box-small .small-logo p{
    font-size: 27px;
    font-family: "Times New Roman", Times, serif;
    color: red;
    font-weight: 500;
    line-height: 28px;
    text-shadow: 1px 1px silver;
}
.login-box-small .icon{
    background-color: #0d6efd;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    height:100%;
    padding:17px;
    font-size: 25px;
    color: white;
}.login-box-small .label{
    padding-left:75px;
}
/* SMALL SCREEN CSS END */

#alert{
    display: none;
}

.logo{
    position: relative;
    text-align: center;
}
@keyframes right {
    0%   {right:-1000px;}
    100%  {right:0px;}
}
.logo img{
    width:70px;
    height:70px;
    margin-bottom: 20px;
}
.logo h2{
    line-height: 15px;
    color:#0d6efd;
    font-size: 50px;
    padding-bottom:10px;
    text-shadow: 2px 2px rgba(0,0,0,0.8);
}
.logo label{
    font-weight: 500;
    text-shadow: 2px 2px rgba(0,0,0,0.3);
    font-size: 32px;
    padding:0px 5px;
    border: 1px solid white;
    border-radius: 2px;
    color: white;
    background-color: red;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 2px;
}
#time{
    font-size: 15px;
    font-weight: normal;
    color: white;
    text-shadow: 1px 1px rgba(0,0,0,0.8);
}
#date{
    font-size: 15px;
    font-weight: normal;
    color: white;
    text-shadow: 1px 1px rgba(0,0,0,0.8);
}
.datetime{
    text-align: right;
    position: absolute;
    top: 10px;
    right:10px;
    animation-name: top;
    animation-duration: 0.5s;
}
@keyframes top {
    0%   {top:-1000px;}
    100%  {top:10px;}
}

@media only screen and (max-width: 600px) {
    .login-content-small .login-box-small{
        width:95%;
        margin: auto;

    }
}

#loginform-mobile select{
    background-color: var(--sidebar-color);
    color: var(--text-color) !important;
    transition: var(--tran-03);
}

#loginform-mobile .select2-container--default .select2-selection--single{
    padding:10px 5px;
    height: 55px;
    width: 100%; 
    font-size: 16px;  
    position: relative;
    background-color: var(--sidebar-color);
    transition: var(--tran-03) !important;
}

#loginform-mobile span.select2-selection__rendered{
    color: var(--text-color) !important;
    transition: var(--tran-03) !important;
}

#loginform-mobile .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 100%;
    font-size: 1.3em;
    padding: 25px 12px;
    height: 27px;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    transition: var(--tran-03);
}
