/**
* @author justin (with e)
* @copyright 2018
*
*/


body{
    background-image: url(../img/dtrmainscreen.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: avenir;
}

.no-padding-margin{
	margin: 0px;
	padding: 0px;
}

.hr-title{
	font-weight: bold;
	font-family: avenir;
	color: black;
	font-size: 30px;
	width: 100%;
	text-align: center;
	margin-top : 10vh;
}

.sideLogin{
    height: 100%;
    background-image: url(../img/dtrmainscreen.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right 0 center;
}
.login-div{
	width: 26%;
    background: #ffffffa8;
    border-radius: 10px;
    padding: 2%;
    color:#333333;
    min-width: 400px;
    float: left;
    margin-left: 5%;
}



.my-container{
	width: 99%;
	height: 100%;
	border: 1px solid transparent;
	float: left;

}

.login-logo{
	width: 90px;
}

.login-header{
	padding:10px -10px;
	font-size:18px;
}

.login-header-description{
	font-size:12px;
}

.login-caption{
	color:#003087 ; 
	font-weight: bold;
}

.login-input{
	border: 1px solid #003087;
}

.btn-google{
	width: 48%;
	padding: 3px;
	background: #0054C2;
	color: white;
}

.login-google-icon{
	width: 28px;
	height: 28px;
}

.google-icon-icon-div{
	float: left
}

.google-login-caption{
	font-size: 11px;
}

.school-name{
    font-family: avenir;
    /*text-transform: uppercase;*/
/*        position: inherit;*/
    font-size: 16px;
    font-weight: 700;
}

tr{
 font-family: avenir;
    /*text-transform: uppercase;*/
/*        position: inherit;*/
    font-size: 16px;
    font-weight: 700;
}

p.hr-title{
    font-family: avenir;
    text-transform: uppercase;
    font-size: 33px;
}
span.login-header-description{
    font-family: avenir;
    font-size: 16px;
    float: center;
    margin-top: -5px;
    margin-left: 10%;
}
/*h5.login-desc{
    font-family: Poppins, sans-serif;
    font-size: 16px;
}*/
.login-desc{
        font-family: avenir;
        font-size: 20px;
    }
#fp_modal{
    font-family: Poppins, sans-serif;
    cursor: pointer;
}

#logsubmit{
    background-color: #e9ce41;
    font-family: Poppins, sans-serif;
    color:black;
    font-size: 22px;
    height: 40px;
    font-weight: bold;
}

/*#region Material Design Inputs ---------------------------------------------------*/

/* All material design html elements need to be within material-input-group for*/

.material-input-group {
    position: relative;
    margin-bottom: 8px;
}

/*The Input*/

.material-input-group__input {
    font-size: 19px;
    padding: 14px 10px 5px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #aeaeae;
}

.material-input-group__input:focus {
    outline: none;
}

/*The Label (animates up and down)*/
.material-input-group__label {
    color: #999;
    font-size: 1.5em;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 16px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;

    /*IE10 cursor issue fix*/
    cursor: text;
}

/*The Label: active state */
.material-input-group__input:focus~.material-input-group__label,
.material-input-group__input.hasText~.material-input-group__label {
    top: -4px;
    font-size: 1em;
}

/*The Bar (beneath the input, two psuedo elements immitate a bar spreading out from the centre*/

.material-input-group__bar {
    position: relative;
    display: block;
    width: 100%;
}

.material-input-group__bar:before,
.material-input-group__bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #6b6272;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.material-input-group__bar:before {
    left: 50%;
}

.material-input-group__bar:after {
    right: 50%;
}

/*The Bar: active state */
.material-input-group__input:focus~.material-input-group__bar:before,
.material-input-group__input:focus~.material-input-group__bar:after {
    width: 50%;
}