* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #cfe9f7 0%, #dff5ea 100%);
}

.turnero-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.turnero-card {
  background-color: #ffffff;
  padding: 48px 56px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 420px;
  width: 100%;
}

.turnero-title {
  font-size: 34px;
  font-weight: 500;
  color: #2b7a78;
  margin-bottom: 12px;
}

.turnero-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

.turnero-link {
  display: inline-block;
  padding: 12px 26px;
  background-color: #3aa6a0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.turnero-link:hover {
  background-color: #2b7a78;
  transform: translateY(-2px);
}
