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

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.logo img {
  width: clamp(120px, 20vw, 150px);
  height: auto;
}

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

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 280px;
}

.main-button {
  text-align: center;
  background-color: #d38b26;
  color: white;
  padding: 0.75rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: bold;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.main-button:hover {
  background-color: #b6761f;
}
