* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f4f3ff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.login-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8e6f0;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #7F77DD;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.08em;
}

.logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Tagline */
.tagline {
  font-size: 14px;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

/* Botón Google */
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}

.btn-google:hover {
  background: #f9f9f9;
}

/* Divider */
.divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.divider span {
  flex: 1;
  height: 1px;
  background: #eee;
}

.divider p {
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
}

/* Formulario */
.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}

.form input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  outline: none;
  transition: border 0.2s;
}

.form input:focus {
  border-color: #7F77DD;
}

/* Botón principal */
.btn-primary {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  border: none;
  background: #7F77DD;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #534AB7;
}

/* Nota al pie */
.footer-note {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 0.5rem;
}