:root 
{
	/**/
  --div-login-width: 500px;
  --div-login-height: 500px;
}


/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Raleway-Regular;
  src: url('../fonts/raleway/Raleway-Regular.ttf'); 
}

@font-face {
  font-family: Raleway-Medium;
  src: url('../fonts/raleway/Raleway-Medium.ttf'); 
}

@font-face {
  font-family: Raleway-SemiBold;
  src: url('../fonts/raleway/Raleway-SemiBold.ttf'); 
}

@font-face {
  font-family: Raleway-Bold;
  src: url('../fonts/raleway/Raleway-Bold.ttf'); 
}


body
{
	margin: 0px;

}

div, input, span
{
	box-sizing: border-box;
}

#div-body
{
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: url('../imgs/fond.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#div-fond
{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

#div-flex
{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#div-login
{
	width: var(--div-login-width);
	padding: 62px;
	background-color: #FFF;
}

#div-logo
{
	text-align: center;
}

#div-logo > div
{
	width: 100px;
	display: inline-block;
	transition: all 1s;
}

#div-logo > div:hover
{
	-webkit-transform: rotateY(360deg); /* Safari prior 9.0 */
  	transform: rotateY(360deg);
}

#div-inputs
{
	
}

.inputs-forms
{
	width: 100%;
}

.inputs-forms .label-input
{
	
}

.inputs-forms .label-input > label
{
	display: inline-block;
	font-family: 'Raleway-Medium';
	font-size: 14px;
	padding-bottom: 10px;
	color: #555555;
}

.inputs-forms .write-input
{
	width: 100%;
	border: 1px solid #E0E0E0;
	border-radius: 3px;
}

.inputs-forms .write-input > input
{
	position: relative;
	width: 100%;
	height: 58px;
	padding: 0px 24px;
	border: none;
	z-index: 100;
	outline: none;
	background: none;
	font-size: 16px;
	font-family: 'Raleway-Medium';
}

.inputs-forms .write-input > input:focus
{
	
}

.inputs-forms .write-input > #iconePwd
{
	padding: 0px 10px;
	height: 58px;
	position: absolute;
	display: flex;
	align-items: center;
	z-index: 150;
	margin-left: calc(var(--div-login-width) - 165px);
	color: #999999;
	cursor: pointer;
}

.inputs-forms .write-input > #iconePwd > i
{
	
}

.inputs-forms .write-input > input ~ span
{
	width: calc(var(--div-login-width) - 126px);
	height: 58px;
	position: absolute;
	margin-top: -58px;
	display: block;
	border: 1px solid #E0E0E0;
	border-radius: 3px;
	transform: scale(1.2);
	z-index: 50;
	transition: all 0.5s;
	opacity: 0;
}

.inputs-forms .write-input > input:focus ~ span
{
	transform: scale(1);
	opacity: 1;
	border: 1px solid #3077B0;
}

#div-submit
{

}

#div-submit > button
{
	width: 150px;
	padding: 16px;
	border: 1px solid #3077B0;
	background: #3077B0;
	color: #FFF;
	border-radius: 26px;
	font-family: 'Raleway-SemiBold';
	font-size: 16px;
}

#div-submit > button:hover
{
	background: #054672;
}

#div-options
{
	padding: 16px 0px;
}

#div-options > div
{
	display: flex;
}

#div-options > div > div
{
	flex: 1;
	font-family: 'Raleway-Regular';
	font-size: 13px;
}

#div-options > div > div:nth-child(2)
{
	text-align: right;
}

#div-options > div > div:nth-child(2) > a
{
	text-decoration: none;
	color: #999;
}