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

body {
  height: 100vh;
  font-family: "Inter", sans-serif;
}

ul {
  list-style: none;
  font-size: 20px;
}

ul > li {
  margin: 5px 0;
}

.hero-image {
  height: 350px;
  width: 350px;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

main {
  background-color: #ffcd9e;
  padding: 83px 136px;
  display: flex;
  justify-content: space-around;
  flex: 1;
}

.title {
  font-size: 36px;
}

.description {
  font-size: 20px;
  color: #484848;
}

.success-text {
  font-size: 42px;
  font-weight: bold;
}

.tags {
  display: flex;
  gap: 1rem;
  color: white;
  margin-left: 1rem;
}

.email-input {
  padding: 0.75rem 0.75rem;
  font-size: 20px;
  border-radius: 8px;
}

.register-button {
  padding: 0.75rem 2.25rem;
  background-color: #282828;
  color: white;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  justify-content: center;
}

.right-section {
}

footer {
  padding: 50px 196px;
  background-color: #282828;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logos-group {
  display: flex;
}
