
*{
  margin: 0;
  padding: 0; 
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container{
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
}


.box{
  display: flex;
  align-items: center;
  background-color: #00b7ff;
max-width: 1200px;
margin: 0 20px;
height: 600px;
border-radius: 20px;
}


.box .Izquierda{
width: 100%;
margin-right: 50px;
margin-left: 20px;
max-width: 600px;

}

.box .Izquierda h1{
font-size: 4rem;
margin-bottom: 60px;
text-align: center;
}
.box .Izquierda h2{
  
}

.box .Izquierda input{
  width: 100%;
  border:none;
  border-radius: 10px;
  padding: 20px 15px;
  margin-bottom: 35px;
  font-size: 1.2rem;
  outline: none;
  background-color: #ffffff;

}


.box .Izquierda button{
  background-color: rgb(38, 45, 179);
  color: aliceblue;
  font-size: 1.6rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  padding: 15px 0;
  width: 100%;
cursor: pointer;
margin-top: 20px;
}


.box .Derecha{
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  margin-right: 20px;
}

.box .Derecha .img{
  width: 100%;
}

.box .Derecha img{
  width: 100%;
}
.box .Derecha p{
  font-size: 1.4rem;
  margin-bottom: 30px;
}


@media(max-width:800px){
  .box{
    flex-direction: column;
    height: auto;
  }
  .box .Derecha{
    display: flex;
    flex-direction: column;
  }

  .box .Derecha .img{
    width: 90%;
    margin: 10px;
  }
  .box .Derecha p{
    margin: 20px 30px;
  }
  .box .Izquierda h1{
    margin: 20px 0;
  }
.box .Izquierda input{
  width: 100%;
}
.box .Izquierda{
  padding: 0 20px;
  margin: 0 20px;
}
}