* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
    height: 100%;
    background: #ad9d9d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  width: 80%;
  padding: 30px 50px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

.divs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 20px;
}

.divs .first {
  width: 80%;
  height: 80px;
  border-radius: 1rem;
  background: #e0e0e0;
  box-shadow: inset 10px -10px 20px #bebebe, inset -10px -10px 20px #ffffff;
  animation: slideInLeft 0.8s linear alternate infinite;
}

.divs2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 450px;
  padding: 20px 10px;
}

.divs2 .second {
  width: 40%;
  height: 420px;
  border-radius: 5rem;
  background: #e0e0e0;
  box-shadow: inset 30px -20px 20px #bebebe, inset -20px -30px 20px #ffffff;
  animation: slideInLeft 0.8s alternate infinite;
}

.divs3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 180px;
  padding: 0 20px;
  align-items: center;
}

.divs3 .third {
  height: 150px;
  width: 100%;
  border-radius: 50%;
  background: #e0e0e0;
  box-shadow: inset 10px 10px 20px #bebebe, inset -10px -20px 40px #ffffff;
  animation: slideInLeft 0.9s linear alternate infinite;
}

.divs3 .fourth {
  width: 100%;
  height: 250px;
  margin-top: 20px;
  border-radius: 1.5rem;
  background: #e0e0e0;
  box-shadow: inset 10px 10px 20px #bebebe, inset -10px -10px 20px #ffffff;
  animation: slideInLeft 0.9s alternate infinite;
}

.wrapper {
  width: 50%;
  max-width: 450px;
  height: 100%;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper-content {
  padding: 20px;
  width: 100%;
  margin-top: 30px;
}

.wrapper-content h3 {
  font-size: 36px;
  font-weight: 600;
}

.wrapper-content form {
  display: flex;
  flex-direction: column;
}

.wrapper-content form p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.wrapper-content form input {
  font-size: 17px;
  padding: 20px;
  border: 1px solid #000;
  background: transparent;
  outline: none;
  border-radius: 10px;
}

.wrapper-content form input::placeholder {
  color: #000;
}

.wrapper-content form label {
  padding-top: 5px;
  font-size: 13px;
  font-weight: 600;
}

.wrapper-content form label .check {
  accent-color: #000;
  margin-right: 5px;
}

.wrapper-content form label a {
  color: #000;
}

.wrapper-content button {
  margin-top: 30px;
  width: 100%;
  padding: 15px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
}

@keyframes slideInLeft {
  from {
    transform: translateY(5px);
  }
  to {
    transform: translateY(-5px);
  }
}

@media (max-width: 800px) {
    body {
        background: none;
    }
  .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none;
    width: 100%;
  }

  .divs {
    width: 80%;
  }

  .wrapper {
    width: 100%;
  }
}

@media (max-width: 500px) {
  body {
    background: none;
  }

  .container {
    box-shadow: none;
    padding: 30px 20px;
  }

  .divs2 {
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .divs2 .second {
    height: 90%;
    width: 100px;
  }

  .divs3 .third {
    height: 120px;
    width: 100px;
  }

  .divs3 .fourth {
    height: 250px;
    width: 100px;
  }

  .wrapper-content {
    margin-top: 0;
    padding: 0;
  }
  .wrapper-content h3 {
    font-size: 30px;
    text-align: center;
  }

  .wrapper-content p {
    font-size: 10px;
  }

  .wrapper-content form input {
    padding: 10px;
  }


}

@media (max-width: 400px) {
    .divs {
        padding: 0;
        width: 100%;
    }
}