/* General */
* {
   margin: 0;
   padding: 0;
   line-height: 1;
   font-family: 'Roboto', sans-serif;
   
   box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
}



body {
    background-color: #FAFAFA;
}



.input-element-style {
	outline: none !important;
	width: 100% !important;
    padding: 10px 10px 10px 35px !important;
    border: none !important;
    border-bottom: 1px solid #004157 !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    color: #004157 !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    
    -webkit-transition: 0.3s;
    transition: 0.3s;
}




#container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.loading-page {
    position: absolute;
    width: 50px;
	height: 50px;
    left: calc(50% - 25px);
    z-index: 1;
}




/* Login */
#container_login {
    width: 350px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.03);
    background-color: #FFFFFF;
    display: none;
    z-index: 2;
}



#logo_rfast {
	width: 100%;
	margin-bottom: 10px;
}



.container-input {
	position: relative;
}

.container-input > .material-icons {
    position: absolute;
    bottom: -4px;
    color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.container-input > .input-password-eye-icon {
	right: 3px;
	cursor: pointer;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}



.g-recaptcha > div {
	margin: 10px auto 20px auto;
}



#send_button {
    position: relative;
	outline: none;
    border: none;
    background: #004157;
    color: #FFFFFF;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 15px 60px;
    border-radius: 50px;
    margin-bottom: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;

    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#send_button:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0) !important;
}



.loading-login-icon-button {
	display: none;
	position: absolute;
	height: 30px;
	right: 7.5px;
	top: 7.5px;
}



#remember_password {
	font-size: 12px;
    color: #004157;
}



.color-eye-password {
	color: #00ADEE !important;
}