#main_title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#index_page {
  width: 100%;
  margin-bottom: 3vh;
  height: auto;
  min-height: 69vh;
  display: flex;
  justify-content: space-around;
}
#index_page * {
  box-sizing: border-box;
}
#index_page h1 {
  color: #515E85;
  font-size: x-large;
  font-weight: 500;
}
#index_page #square_information {
  width: 40%;
  height: auto;
  margin-top: 13vh;
}
#index_page #square_information h1 {
  text-align: center;
  margin-bottom: 2vh;
}
#index_page #square_information span {
  opacity: 70%;
  font-size: small;
}
#index_page #square_information ul {
  margin-top: 2vh;
  margin-left: 2vh;
  line-height: 1.5;
}
#index_page #square_information ul li {
  font-size: 16px;
  font-weight: bold;
}
#index_page #square_information ul li span {
  font-size: 14px;
  font-weight: normal;
  opacity: 100%;
}
#index_page #square_login, #index_page #square_register {
  width: 45%;
  max-width: 500px;
  min-height: 90%;
  margin-bottom: 5vh;
  margin-top: 5vh;
  box-shadow: 0px 5px 10px 3px #9b9b9b;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  border-radius: 10px;
  position: relative;
  font-size: small;
}
#index_page #square_login:hover, #index_page #square_register:hover {
  box-shadow: 1px 5px 10px 2px #c4c4c4;
}
#index_page #square_login a, #index_page #square_register a {
  color: #515E89;
  font-weight: 700;
}
#index_page #square_login #button_acceder, #index_page #square_register #button_acceder {
  align-items: center;
  justify-content: center;
}
#index_page #square_login #button_acceder input, #index_page #square_register #button_acceder input {
  background-color: #012943;
  width: 15vh;
  min-height: 5vh;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  border: none;
  transition: 0.2s;
}
#index_page #square_login #button_acceder input:hover, #index_page #square_register #button_acceder input:hover {
  background-color: #1B72AA;
}
#index_page #square_login #links_other, #index_page #square_register #links_other {
  position: absolute;
  bottom: 0;
  min-height: 15%;
  flex-direction: column;
}
#index_page #square_login .datos_input_unit, #index_page #square_register .datos_input_unit {
  width: 80%;
  margin-top: 3vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#index_page #square_login .datos_input_unit a, #index_page #square_register .datos_input_unit a {
  color: #012943;
}
#index_page #square_login .datos_input_unit span, #index_page #square_register .datos_input_unit span {
  width: 80%;
  text-align: center;
  opacity: 70%;
}
#index_page #square_login .datos_input_unit fieldset, #index_page #square_register .datos_input_unit fieldset {
  width: 80%;
  height: 5vh;
  position: relative;
  display: flex;
  align-items: center;
}
#index_page #square_login .datos_input_unit fieldset legend, #index_page #square_register .datos_input_unit fieldset legend {
  padding: 0;
  border: 0;
  margin-left: 5%;
  font-size: 15px;
  position: absolute;
  top: -17px;
  background-color: white;
  padding-left: 5px;
  padding-right: 5px;
}
#index_page #square_login .datos_input_unit fieldset input, #index_page #square_login .datos_input_unit fieldset select, #index_page #square_register .datos_input_unit fieldset input, #index_page #square_register .datos_input_unit fieldset select {
  width: 98%;
  height: 100%;
  border: none;
  outline: none;
  margin-left: 2%;
}
#index_page #square_login .datos_input_unit #datos_error, #index_page #square_register .datos_input_unit #datos_error {
  width: 100%;
  margin-bottom: 3vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#index_page #square_login .datos_input_unit #links, #index_page #square_register .datos_input_unit #links {
  width: 100%;
  margin-bottom: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
#index_page #square_register {
  width: 90%;
  max-width: 85%;
  margin-bottom: 5vh;
  margin-top: 5vh;
  box-shadow: none;
}
#index_page #square_register:hover {
  box-shadow: none;
}
#index_page #square_register .full {
  width: 100% !important;
  margin-bottom: 1vw;
}
#index_page #square_register .full span {
  width: 65%;
  text-align: center;
}
#index_page #square_register .two_inputs fieldset {
  width: 36.5%;
}
#index_page #square_register .two_inputs h1 {
  margin-right: 2vw;
  margin-left: 2vw;
}

@media screen and (max-width: 730px) {
  #index_page {
    flex-direction: column;
    align-items: center;
  }
  #index_page #square_information {
    margin-top: 0;
    width: 80%;
  }
  #index_page #square_login {
    width: 100%;
    min-height: 55vh;
    box-shadow: none;
    border-top: 1px solid #9b9b9b;
    border-bottom: 1px solid #9b9b9b;
    border-radius: 0;
  }
  #index_page #square_login:hover {
    box-shadow: none;
  }
  #index_page #square_register .datos_input_unit {
    width: 100%;
  }
  #index_page #square_register .datos_input_unit fieldset {
    width: 90%;
  }
  #index_page #square_register .full {
    margin-top: 1vh;
  }
  #index_page #square_register .full span {
    width: 80%;
  }
  #index_page #square_register .two_inputs fieldset {
    width: 55%;
  }
  #index_page #square_register .two_inputs .second {
    width: 29%;
  }
  .mtop-6 {
    margin-top: 4vh !important;
  }
}/*# sourceMappingURL=index_style.css.map */