* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


body {
	background:#F2F2F2;
	font-size: 16px;
	font-family: Arial, sans-serif, helvetica;
	
}

h1 {
	margin-top: 10px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	text-align: center;
	margin-bottom:10px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 2em;
	color: #536DFE;
}

.a  {	
	border-top: solid 2px #536DFE;
	position:relative;    
    width:auto;
	color: #536DFE;  
	font-weight: bold;
	
}

p {
	margin-top: 10px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	text-align: center;
	margin-bottom:10px;

}

.wrap {
	width: 90%;
	max-width: 500px;
	margin: auto;
}

form {
	width: 100%;
	margin: 20px 0;
	padding: 20px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 0 3px grey;
	border-top:4px solid #536DFE;
	
}


form input[type="text"],
form input[type="number"], 
form input[type="email"] {
	border: 1px solid #536DFE;
	border-radius: 2px;
	padding: 16px;
	width: 100%;
	display: block;
	margin-bottom:20px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
}

form input[type="text"]:focus,
form input[type="number"]:focus, 
form input[type="email"]:focus {
	border: 2px solid #3F51B5;
	padding: 15px;
}



.materias select {
    position: relative;
    border: 1px solid #536DFE;
    width: 49%;
    overflow: hidden;
    background-color: #fff;
	border-radius: 2px;
	padding: 5px;
	margin-bottom:10px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;

  }

/*form label {
	font-size: 12px;
	font-family:Arial, sans-serif, helvetica;
	color: grey;
}*/

.materias option {
	color: grey;
	
}

.alert {
	padding: 1em;
	color:#fff;
	border-radius: 2px;
	margin-bottom: 20px;
	font-size: 14px;
}

.alert.error {
	background: #F2DEDE;
	border:1px solid #a94442;
	color: #a94442;
}

.alert.success {
	background: #4CAF50;
}

.boton,
form input[type="submit"]{
	padding: 15px;
	background: #ED572A;
	color:#E1E9FA;
	font-size: 1em;
	font-family:"Roboto", Arial, sans-serif, helvetica;
	border-radius: 2px;
	border:none;
	float: right;
	cursor: pointer;
	margin-top: 15%;
}

form input[type="submit"]:hover{
	background: #E64A19;
}