* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}


.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ffffff;
}

.container {}

.box {
  margin-top: -150px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.66);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 1s ease;

  @media (max-width:600px){
    margin-top: -150px;
  }

  @media (max-width:380px){
    margin-top: -100px;
  }
}

/* .box:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
} */

.img__wrapper {}

.img__wrapper img {
  max-width: 200px;
}

.img__wrapper p {
  color: #000000;
  font-size: 18px;
  cursor: default;

}

.button__wrapper {
  background-color: #7794f8;
  margin-top: 20px;
  border-radius: 3px;
  transition: 0.3s ease;
  width: 430px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  @media (max-width:600px){
    width: 100%;
  }

  &:hover {
    background-color: #5f76e8;
  }

  &:active {
    background-color: #4b6ce7;
  }

}

.button__wrapper:hover~.box {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  /* Добавьте новый эффект тени */
}

.button__wrapper a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 0 40px;
}