@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
}

.display, .load_change, .animate_pixel, .pixelart_card, .btn_form, .div_btn_form, .tos, .div_logo_login, .card {
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  display: flex;
  justify-content: flex-start;
  height: 100%;
}

.h3_css {
  text-transform: capitalize;
  text-align: start;
  color: #757575;
  font-weight: 400;
  font-size: 0.9em;
  padding: 5px 0;
}

.card {
  width: 30%;
  min-width: 400px;
  min-height: 100vh;
  background-color: #fff;
  border-right: 1px solid rgba(117, 117, 117, 0.5);
}

.card_content {
  width: 100%;
  padding: 0 10px;
}

#form_registro {
  text-align: center;
}

.div_logo_login {
  margin-bottom: 40px;
}

.logo_login {
  width: 150px;
}

.input_form {
  outline: none;
  text-align: center;
  font-size: 0.9em;
  font-weight: 500;
  width: 90%;
  height: 50px;
  margin: 10px 0;
  border: 0;
  border-bottom: 2px solid #707070;
  color: #707070;
}
.input_form:focus {
  border-bottom: 2px solid #FF4747;
}
.input_form::placeholder {
  text-align: start;
  font-weight: 400;
  font-size: 1.1em;
  letter-spacing: 0.4px;
  color: rgba(112, 112, 112, 0.7);
}

.span_form {
  color: #FF4747;
  width: 100%;
  font-weight: 500;
  font-size: 0.9em;
}

.tos_span {
  margin-left: 10px;
  font-size: 0.9em;
  font-weight: 400;
  color: #757575;
}
.tos_span a {
  color: #FF4747;
}

.div_btn_form {
  width: 100%;
}

.btn_form {
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  width: 90%;
  height: 60px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 4px #FF4747;
  border: 0;
  background-color: #FF4747;
}

.btn_form:hover {
  opacity: 0.8;
}

.span_login {
  margin-top: 15px;
  font-size: 1em;
  width: 100%;
  display: block;
  text-align: center;
  color: #757575;
}
.span_login a {
  color: #FF4747;
}

.pixelart_card {
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.animate_pixel {
  width: 100%;
}

.svg_animate {
  width: 50%;
  height: 50%;
  min-width: 500px;
  min-height: 500px;
}

#Cohete {
  animation: cohete 2s linear infinite;
  transition: ease 1.2s;
}

@keyframes cohete {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(2px, 8px);
  }
  50% {
    transform: translate(0px, 15px);
  }
  75% {
    transform: translate(-2px, 10px);
  }
  100% {
    transform: translate(-1px, 0px);
  }
}
.title_page {
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  color: #FF4747;
  font-size: 2.5em;
  font-weight: 600;
}

.title_page_card_content {
  display: none;
}

.load_change {
  transition: ease 0.5s;
  margin: 10px 0;
}

#load_change {
  width: 15px;
  height: 15px;
  border: 3px solid #bdc6cc;
  border-top-color: #FF4747;
  border-top-style: groove;
  border-radius: 100%;
  animation: girar_load 0.4s linear infinite;
}

@keyframes girar_load {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 900px) {
  .card {
    height: 100%;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
  }
  .card_content {
    padding: 0;
  }
  .tos_span {
    font-size: 1em;
  }
  .div_logo_login {
    margin-bottom: 20px;
  }
  .logo_login {
    width: 200px;
  }
  .span_login {
    margin: 10px 0;
  }
  .title_page_card_content {
    display: block;
    font-size: 1.5em;
  }
  .pixelart_card {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .btn_form {
    font-size: 1em;
    padding: 10px 0;
  }
}