﻿body
{
    font-family: 'Nunito', sans-serif;
}
.AccountTextBox
{ 
    width: 98%;
    height: 25px;
    background-color: white;
    font-size: 16px;
    color: darkblue;
    /*border-radius: 5px; 
    -moz-border-radius: 5px; 
    -webkit-border-radius: 5px;*/
    padding-left: 10px;
    border: solid 1px #00a0e4;
    background-color: #fff;
}
.AccountTextBox:focus
{
    border: solid 2px orange;
    background-color: lightyellow;
    color: darkblue;
}
.LoginButton
{
    padding: 10px;
    width: 140px;
    font-size: 20px;
    color: #00a0e4;
    font-weight: bold;
    border-radius: 10px; 
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
    background-color: #ddd;
    border: 1px solid #00a0e4;
    cursor: pointer;
    outline: none;
    box-shadow: 3px 5px #999;
    /*transition: all 0.5s;*/
}
.LoginButton:active {
  box-shadow: 1px 3px #666;
  transform: translateY(4px);
}
.RememberMe
{ 
    font-size: 14px; 
}
.RememberMe label
{
    text-align: left;
    padding-left: 0.2em;
}
.ForgotPassword
{
    font-size: 14px; 
    color: red;
    text-decoration: none;
}
.HR_Sep
{
    height: 2px;
    border: 0;
    background-color: #ddd;
    margin-left: 5px;
}
.ChangeUser, .ChangePass
{
    font-size: 14px; 
    text-decoration: none;
    color: #444;
}
.DIV_SoftwareArea
{
    border-radius: 10px; 
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
    background-color: #0090ff;
    margin-top: 10px;
    padding: 3px;
    margin-left: 5px;
}
.LBL_SoftwareArea
{
    color: #fff;
    font-size: 18px;
}
.DIV_ContainerLogin
{
    width: 99%;
    position: absolute;
    top: 10%;
}
.DIV_Login
{
    padding: 20px;
    padding-bottom: 10px;
    background-color: rgba(245, 245, 245, 0.8);
    /*border: black 1px solid;*/
    border: none;
    display: block;
    width: 430px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px; 
    -moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
    -moz-box-shadow: 0px 0px 1000px #00121E;
    -webkit-box-shadow: 0px 0px 1000px #00121E;
    box-shadow: 0px 0px 1000px #00121E;
}
/*.RememberMe input {width:25px; height:25px;}*/
/*input[type="checkbox"] {-moz-appearance: none;}*/

@media screen and (min-width: 769px) and (max-width: 1024px) /*Md*/
{
    .DIV_ContainerLogin
    {
        width: 99%;
        position: absolute;
        top: 15%;
    }
}
@media screen and (min-width: 361px) and (max-width: 768px) /*Sm*/
{
    .DIV_ContainerLogin
    {
        width: 99%;
        position: absolute;
        top: 25%;
    }
}
@media screen and (max-width: 360px) /*Xs*/
{
    .DIV_ContainerLogin
    {
        width: 99%;
        position: absolute;
        top: 30%;
    }

}