@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

body, header {
	font-family: 'Open Sans', sans-serif;
	background-color: #000000;
	background-repeat: repeat;
}

body {
	background-image: url(../fondo1.jpg);
	margin:0px;
}

body,td,th {
	color: #FFFFFF;
}



form {
  background: #fff;
  max-width: 360px;
  width: 100%;
  padding: 35px 44px;
  border: 1px solid ##e1e2f0;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(42, 45, 48, 0.12);
  transition: all 0.3s ease;
  margin:20px;
}

.tituloAMC h2 {
  color:white;
  margin-left: -30%;
}

.row {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.row label {
  font-size: 13px;
  color: #8086a9;
}

.row input {
  flex: 1;
  padding: 13px;
  border: 1px solid #d6d8e6;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.2s ease-out;
}

.row input:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px 0 rgba(42, 45, 48, 0.12);
}

.row input::placeholder {
  color: #C8CDDF;
}

button {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background: #2d1c84;
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  margin-top: 15px;
  transition: background 0.2s ease-out;
}

button:hover {
 text-shadow: 0 0 2em rgba(255,255,255,1);
	color:#FFFFFF;
	border-color:#FFFFFF;
}


a.botonIndex{
	display:inline-block;
	padding:0.46em 1.6em;
	margin:0 0.2em 0.2em 0;
	border-radius:0.12em;
	box-sizing: border-box;
	text-decoration:none;
	font-family:'Roboto',sans-serif;
	font-weight:300;
	color:white;
	text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
	background-color:#2d1c84;
	text-align:center;
	transition: all 0.15s;
}
a.botonIndex:hover{
	text-shadow: 0 0 2em rgba(255,255,255,1);
	color:#FFFFFF;
	border-color:#FFFFFF;
}

@media all and (max-width: 458px) {
	a.botonIndex{
	display:block;
	margin:0.4em;
	}
  
  body {
    margin: 0 18px;
  }
  
  form {
    background: #f9faff;
    border: none;
    box-shadow: none;
    padding: 20px 5px;
  }

}