body {
  background: #f7f7f7;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.logo {
  width: 180px;
  margin-bottom: 40px;
}
.scelta {
  display: flex;
  gap: 30px;
}
.btn {
  text-decoration: none;
  color: #fff;
  padding: 18px 36px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  background: #e91e63;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.btn:hover {
  background: #ad1457;
}
.btn-secondaria {
  background: #18324d;
  color: #fff;
}
.btn-secondaria:hover {
  background: #204060;
}
@media (max-width: 600px) {
  .logo {
    width: 200px;
    margin-bottom: 36px;
  }
  .scelta {
    flex-direction: column;
    gap: 22px;
    width: 100%;
    align-items: center;
  }
  .btn {
    width: 320px;
    max-width: 98vw;
    min-width: 200px;
    font-size: 1.35rem;
    padding: 26px 0;
    border-radius: 12px;
    white-space: nowrap;
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  body {
    padding: 22px 0 38px 0;
  }
  div[style*="font-size:1.2rem"] {
    font-size: 1.25rem !important;
    margin-bottom: 36px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box;
  }
} 