* {
box-sizing: border-box;
}

*:focus {
	outline: none;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  background-image: url(../Imagenes/bg.png);
  background-size: cover;
  background-position: bottom;
  font-family: calibri;
}

.container {
  padding: 30px;
  display: flex;
  margin: auto;
  width: 25%;
  height: 75%;
  box-shadow: 4px 4px 4px #235f05;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login {
  width: 100%;
  height: 100%;
  background-color: #eaeaea;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header img{
  margin-top: 20px;
  width: 55%;
}

.main input,button {
  width: 80%;
  height: 35px;
  margin-top: 20px;
  padding-left: 8px;
  border-radius: 5px;
  text-align: center;
}

.main button {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 15px;
  color: white;
  background-color: #00974F;
}

.main button:hover {
  box-shadow: 3px 3px 3px rgba(1,70,112,.5);
}

.main h5 {
  color: black;
  font-size: x-small;
  text-align: right;
  margin-right: 5%;
}

.selector select{
  margin-left: 10%;
  width: 79%;
  text-align: center;
}

.main select:hover, input:hover, select:hover {
  border-color: gray;
  border-width: 2px;
}

@media only screen and (max-width: 800px) {

  .container {
    padding: 10px;
    display: flex;
    margin: auto;
    width: 50%;
    height: 63%;
    box-shadow: 4px 4px 4px #235f05;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

}

@media only screen and (max-width: 500px) {

  .container {
    padding: 10px;
    display: flex;
    margin: auto;
    width: 70%;
    height: 60%;
    box-shadow: 4px 4px 4px #235f05;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

}