<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

body {
  background-image: url(img/fondoregister.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

main {
  width: 100%;
  padding: 20px;
  margin: auto;
  margin-top: 50px;
}

.contenedor__todo {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.caja_trasera {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 128, 255, 0.5);
}

.caja_trasera div {
  margin: 30px 40px;
  color: white;
  transition: all 500ms;
}

.caja_trasera div p,
.caja_trasera div button {
  margin-top: 10px;
}

.caja_trasera div h3 {
  font-weight: 200;
  font-size: 26px;
}

.caja_trasera button {
  padding: 10px 40px;
  border: 2px solid #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: white;
  outline: none;
  transition: all 300ms;
}

.caja_trasera button:hover {
  background: #fff;
  color: #46a2fd;
  border-radius: 10px;
}

/* Formularios */
.contenedor_login-register {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: auto;
  transition: all 0.5s ease-in-out;
}

.contenedor_login-register form {
  width: 48%;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}

.contenedor_login-register form h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #46a2fd;
}

.contenedor_login-register form input {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  border: none;
  background: #f2f2f2;
  font-size: 16px;
  outline: none;
}

.contenedor_login-register form button {
  padding: 10px;
  margin-top: 40px;
  border: none;
  font-size: 14px;
  background: #46a2fd;
  color: #fff;
  cursor: pointer;
  outline: none;
  transition: all 300ms;
  width: 100%;
}

.contenedor_login-register form button:hover {
  background: #fff;
  color: #46a2fd;
  border-radius: 10px;
  border: 2px solid #46a2fd;
}

/* Responsividad */
@media screen and (max-width: 850px) {
  main {
    margin-top: 10px;
  }

  .caja_trasera {
    max-width: 100%;
    height: auto;
    flex-direction: column;
    margin: auto;
    padding: 20px;
  }

  .caja_trasera div {
    margin: 20px 0;
    position: relative;
  }

  .contenedor_login-register {
    flex-direction: column;
    align-items: center;
  }

  .contenedor_login-register form {
    width: 100%;
    margin-bottom: 20px;
  }
}
</pre></body></html>