/*=.=.=.=.=---STYLE FOR---=.=.=.=.=*/

/* Getting the new tags to behave */
article, aside, audio,
canvas, command,
datalist, details,
embed,
figcaption, figure, footer,
header, hgroup,
keygen,
meter,
nav,
output,
progress,
section, source,
video {
    display: block;
}

mark,
rp, rt, ruby,
summary,
time {
    display: inline;
}


*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Global properties */
* {
    padding: 0px;
    margin: 0px;
    outline: none;
    border: none;
    list-style: none;
    text-decoration: none;
}

body {
    font: normal 14px/18px 'Roboto', Helvetica, sans-serif;
    color: #000;
    background-image: url(../images/bg.jpg);
    background-size: cover;
   /* background:#ecf2f6;*/
}

.wraper {
    width: 100%;
    float: left;
    background: #1e6887;
    line-height: 48px;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.wraper span {
    float: left;
    width: auto;
    margin: 10px 0 0 20px;
}

.wraper h2 {
    font-weight: 300;
    font-size: 28px;
    color: #fff;
    float: left;
    margin: 0 0 0 20px;
    padding: 0;
    line-height: 48px;
    vertical-align: middle;
}

.login-page {
    margin: 0 auto;
    height: auto;
    min-height: 350px;
    margin-top: 7rem;
    width: 450px;
    /* box-shadow: 0 2px 3px rgba(236, 242, 246, .75); */
    border-radius: 12px;
    background-color: #ffffffad;
    padding: 21px;
    /* background-size: contain; */
    /* opacity: inherit; */
    box-shadow: 0px 2px 6px #0000001f;
}

    .login-page h3 {
        color: #000000;
        font-size: 22px;
        font-weight: 300;
        line-height: 40px;
        /* text-align: center; */
        margin-bottom: 14px;
    }


.username {
    width: 100%;
    font-size: 14px;
    height: 50px;
    margin: 10px 0px;
    padding: 6.5px 10px;
    border: 1px solid #0094f2;
    border-radius: 9px;
}

.pass {
    width: 100%;
    font-size: 14px;
    height: 40px;
    padding: 24.5px 10px;
    border: 1px solid #0094f2;
    border-radius: 9px;
    float: left;
}

.forget {
    width: 100%;
    float: left;
    margin-top: 10px;
    font-size: 15px;
    color: #000;
    text-align: right;
}

.logbut {
    padding: 11px 21px;
    font-size: 17px;
    line-height: 25px;
    background-color: #008ade;
    width: 100%;
    color: #fff;
    border-radius: 6px;
    margin-top: 9%;
    cursor: pointer;
}

    .logbut:hover {
        background-color: #FF9800;
    }

.forget1 {
    width: 100%;
    float: left;
    height: 60px;
    margin-top: 10px;
    border-radius: 3px;
    line-height: 60px;
    vertical-align: middle;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    background: url(../images/forgetpass.png) 109px 23px no-repeat #313131;
    font: normal 14px/18px 'Roboto', Helvetica, sans-serif;
}

    .forget1:hover {
        background: url(../images/forgetpass.png) 109px 23px no-repeat #000;
    }
#aspnetForm > div:nth-child(3) > div > div > label {
    color: #393939;
}
.middle1.login-page h2 {
    color: #2196F3;
    font-size: 44px;
    text-align: left;
    line-height: 50px;
    font-weight: 400;
    text-transform: capitalize;
}
.ftrdiv {
    width: 100%;
    position: fixed;
    bottom: 0;
    line-height: 48px;
    vertical-align: middle;
    background: #1e6887;
    color: #fff;
    font-weight: normal;
    font-size: 12px;
}

.ftrdiv span {
    margin-left: 30px;
}

.username:focus {
    border: 1px solid #838383;
}
.pass:focus {
    border: 1px solid #838383;
}


/*Password keygen Functionality*/
.password-wrapper {
    position: relative;
    width: 100%;
}

.pass {
    width: 100%;
    padding-right: 40px; /* space for the eye icon */
}

.toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: orange;
    cursor: pointer;
}