body {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

.form-wrapper {
  width: 90%; /* Cambiado a 90% */
  width: 400px; /* Se asegura que no sea más grande de 320px */
  height: 600px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  padding: 10px; /* Añadir padding para que haya espacio interno */
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */
}

.form-wrapper img {
    height: 100%;
    position: absolute;
    top: 0;
    left: -79%;
    opacity: .9;
}

input::placeholder {
  color: #fbff00; /* Cambia este color por el que desees */
}

.form-wrapper .content-wrapper {
    position: relative;
    opacity: 1;
    width: 390px;
    height: 500px;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-login #idform{  /* estilo de los input del registro */
  margin: 50px auto;
  display: block;
  border-radius: 20px;
  background: none;
  padding: 10px;
  width: 250px;
  color:red;
  font-size: 20px; 
  margin-top:70px; /* Desplaza el elemento 20px hacia abajo */
  margin-bottom: 5px; /* Desplaza el elemento 20px hacia arriba */
}

.form-login input {
  margin: 85px auto;
  display: block;
  border-radius: 20px;
  background: none;
  padding: 10px;
  width: 250px;
  color:red;
  font-size: 20px; 
}

.bubbly-button {
    width: 100%;
    margin-top: 1px;
    padding: 5px;
    display: block;
    color: yellow;
    background: #1540ff;
    border-radius: 15px;
    font-size: 20px; 
  }
 