.container {
  background-color: #fffff9;
  max-width: 500px;
  margin: 0 auto;
  padding: clamp(1rem, 5vw, 2rem) 1rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.logo img {
  height: clamp(36px, 6vw, 48px);
}

.logo h1 {
  font-size: 1.5rem;
  color: #002147;
}

.image-upload {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  cursor: pointer;
}

.image-button {
  border: 3px solid #003366;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  width: 120px;
}

.image-button img {
  width: 32px;
  margin-bottom: 0.5rem;
}

.image-button span {
  font-weight: bold;
  color: #003366;
}

form {
  width: 100%;
  max-width: 500px;
}

form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: #003366;
}

form input[type="text"],
form input[type="tel"],
form input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  border: 3px solid #003366;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
}

.button-row {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.back-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.back-button img {
  width: clamp(32px, 8vw, 40px);
}

.submit-button {
  background-color: #d38b26;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  align-self: flex-end;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #ba741f;
}

  