body {
  background-color: hsl(234, 29%, 20%);
  font-family: "Roboto", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
  padding: 20px;
  gap: 10px;
  width: 700px;
  height: 500px;
  overflow: hidden;
}
.item1 {
  width: 500px;
  height: 500px;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-left: 20px;
}
.item1 h1 {
  color: hsl(234, 29%, 20%);
  font-size: 40px;
  margin: 0;
  padding-top: 30px;
}
.item1 p {
  color: hsl(234, 29%, 20%);
  font-weight: 500;
}
.item1 ul {
  list-style: none;
  padding: 0;
}
.item1 li {
  margin: 10px;
  display: flex;
  align-items: center;
  color: hsl(234, 29%, 20%);
  font-weight: 500;
}
.icon-list {
  margin-right: 10px;
}
.label-div {
  display: flex;
  justify-content: space-between;
}
.label-div span {
  display: none;
  color: hsl(4, 100%, 67%);
  font-size: 15px;
  font-weight: 700;
  padding-right: 15px;
}
.email-label {
  color: hsl(234, 29%, 20%);
  font-weight: 700;
  font-size: 15px;
}
.email {
  width: 350px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid hsl(235, 18%, 26%);
  margin: 10px 0 10px 0;
}
.email:hover {
  cursor: pointer;
}
.email::placeholder {
  padding-left: 15px;
  color: hsl(0, 0%, 58%);
}
.btn {
  width: 350px;
  height: 50px;
  border-radius: 10px;
  border: none;
  background-color: hsl(234, 29%, 20%);
  color: hsl(0, 0%, 100%);
  font-weight: 600;
}
.btn:hover {
  cursor: pointer;
  background-color: hsl(4, 100%, 67%);
}
.item2 {
  width: 400px;
  height: 500px;
}
.item2 img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  border-radius: 10px;
}
.success-card {
  background-color: hsl(0, 0%, 100%);
  width: 370px;
  height: 370px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: center;
  align-items: flex-start;
  display: none;
}
.success-card img {
  height: 50px;
}
.success-card h1 {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 40px;
  color: hsl(234, 29%, 20%);
}
.success-card p {
  color: hsl(234, 29%, 20%);
  font-family: 700;
}
.success-btn {
  width: 350px;
  height: 50px;
  border-radius: 10px;
  border: none;
  background-color: hsl(234, 29%, 20%);
  color: hsl(0, 0%, 100%);
  font-weight: 600;
}
.success-btn:hover {
  cursor: pointer;
  background-color: hsl(4, 100%, 67%);
}
