* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 15vh;
}

.login-container {
  width: 100%;
  max-width: 320px;
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 35px;
}

.telegram-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Stato di feedback durante il login */
#auth-status {
  margin-top: 16px;
  font-size: 14px;
  color: #555;
  min-height: 20px;
}

#auth-status.error {
  color: #c0392b;
}

#auth-status.success {
  color: #27ae60;
}