body {
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

button {
  background: linear-gradient(to right, #B16CEA, #FF61E6);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 12px;
  transition: .3s ease all;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  
  &:hover {
    opacity: .8;
  }
}

input, select {
  border: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #bbb;
  width: 100%;
  font-size: 16px; /* Better for mobile touch */
  
  &:focus {
    outline: none;
    border-color: #B16CEA;
  }
}

.container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 400px;
  padding: 30px;
  box-sizing: border-box;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

h2 {
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

/* Media queries for better mobile experience */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 25px;
    border-radius: 12px;
  }
  
  input, button {
    padding: 14px;
  }
  
  h2 {
    font-size: 20px;
  }
}

@media (max-height: 600px) {
  .container {
    padding: 20px;
  }
  
  form {
    gap: 12px;
  }
}