* {
  box-sizing: border-box;
  padding: 0%;
  margin: 0%;
}

.contaner {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #333399, #ff00cc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.massage-card {
  width: 400px;
  height: 90vh;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.massage-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(-5deg);
  z-index: -1;
}

.logo {
  margin-bottom: 1rem;
}

.massage-card h1 {
  text-align: center;
  margin-bottom: 1.4rem;
  color: azure;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

form input,
textarea {
  border: 0;
  outline: none;
  margin: 10px 0;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  width: 350px;
}

form button {
  padding: 15px;
  background: linear-gradient(to left, #33339987, #ff00cc92);
  border: none;
  font-size: 1.2rem;
  border-radius: 1.3rem;
  cursor: pointer;
  outline: none;
  width: 150px;
  color: azure;
}