body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column; /* Change to column for responsiveness */
  align-items: center;
  min-height: 100vh;
  transition: background 0.5s ease;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
}

.banner {
  background: #4CAF50;
  padding: 10px;
  text-align: center;
}

.banner img {
  max-width: 100%;
  height: auto; /* Make sure the image scales proportionally */
  border-radius: 50%;
}

.screen {
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 100%; /* Adjusted to 100% for responsiveness */
  margin: 20px;
  background: white;
  overflow: hidden; /* Ensure the content doesn't overflow on small screens */
}

h1 {
  color: #333;
}

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

label {
  margin-top: 10px;
}

input,
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background-color: #f2f2f2;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}

#screen4 p {
  margin-top: 20px;
}

#screen1a {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
}

#screen1a h1 {
  color: white;
}

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

#verificationCode {
  width: 60%;
  padding: 10px;
  margin-top: 10px;
  box-sizing: border-box;
}

.banner {
  position: relative;
}

.banner img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.banner button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

/* Add this style for the button label */
.banner button::before {
  content: "Change Background Color";
  display: block;
  margin-bottom: 5px;
}