body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(to bottom, #A8D8FF, #FFEEDD);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px;
  width: 420px;
  text-align: center;
}

.logo img {
  max-width: 160px;
  border-radius: 10px;
}
.logo h2 {
  color: #FF7F00;
  margin-top: 5px;
  font-weight: normal;
}

h3 {
  color: #005BBB;
  margin-top: 20px;
}

.user-types {
  display: flex;
  justify-content: space-between;
}
.radio {
  text-align: center;
  display: none;
}

.imagen {
  width: 100px;
  height: 100px;
}
.etiqueta {
  font-size: 0.9em;
  color: #333;
  margin: 0px;
  color: #005BBB;
}

.etiqueta.active p{
  border: 3px solid #FF7F00;
  border-radius: 5px;
  background-color: #FFF5E6;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

hr {
  border-color: #005BBB;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.tab {
  background: none;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #005BBB;
  transition: color 0.3s;
}
.tab.active {
  border-bottom: 3px solid #FF7F00;
  color: #FF7F00;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-section input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.form-section p {
  margin: 0px;
  color: #005BBB;
}
.token {
  display: none;
}
.btn-login {
  background: #FF7F00;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-login:hover {
  background: #e66e00;
}

.qr-box img {
  width: 150px;
  margin: 10px auto;
}

.links {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.links a {
  color: #005BBB;
  text-decoration: none;
  font-size: 0.9em;
}
.links a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}