* {
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

body {
  margin: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #FFFFFF;
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
}

.banner {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

form {
  padding: 20px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #1C1C1B;
  background: transparent;
  padding: 10px 5px;
  margin-bottom: 15px;
  outline: none;
}

textarea {
  resize: none;
}

button {
  width: 100%;
  padding: 12px;
  background: #1C1C1B;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}
