@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body{
	background: url("../images/course_1.jpg");
	background-size: cover;
	background-attachment: fixed;
}

.contenedor-form{
	position: relative;
	background: rgba(0,0,0,.7);
	width: 100%;
	max-width: 500px;
	margin: 48px auto;
	color:#FFFFFF;
	border-radius: 5px;
	
	
}

.contenedor-form h2{
	margin: 0 0 28px 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 1px;
}

.contenedor-form input[type="text"],
.contenedor-form input[type="password"]{
	outline: none;
	background: rgba(0,0,0,.5);
	display: block;
	width: 100%;
	padding: 10px 15px;
	color: #FFFFFF;
	border: none;
	border-radius: 2px;
	border-bottom: 4px solid #ff851b;
	font-size: 14px;
	font-weight: normal;
	margin: 0 0 20px 0;
	transition: all .5s ease;
	
}

.contenedor-form input[type="text"]:focus,
.contenedor-form input[type="password"]:focus{
	border-bottom: 4px solid #0075d9;
}

.contenedor-form input[type="submit"]{
	background:#ff851b;
	color:#FFFFFF;
	border: none;
	width: 100%;
	padding: 10px 0;
	font-weight: normal;
	letter-spacing: 1px;
	font-size: 16px;
	cursor: pointer;
	transition: all .5s ease;
}

.contenedor-form input[type="submit"]:hover{
	background: rgba(0,117,217,.7);
}

.contenedor-form .reset-password {
    background: rgba(0, 117, 217, .7);
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.contenedor-form .reset-password a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.contenedor-form .formulario {
    display: block;
    padding: 40px;
}
