
.banner {
  background-color: rgba(202, 200, 217, 0.684);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 8px;
}

.icons {
  display: table-row-group;
  flex-direction: row-reverse;
  gap: 10px;
}

.icons img {
  width: 100px;
  height: 100px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form label {
  color: rgb(255, 255, 255);
  font-weight: bold;
}

.form input {
  width: 300px;
  padding: 10px;
  border: grey;
}

.form button {
  width: 300px;
  padding: 10px;
  color: white;
  background-color: rgb(118, 7, 7);
  border: gray;
  border-radius: 10px;
}
