:root {
  --semades-blue: #009fe3;
  --semades-dark: #0b2a3c;
}

body.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(0,159,227,.18), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(0,200,120,.14), transparent 50%),
    radial-gradient(900px 600px at 50% 90%, rgba(255,210,0,.12), transparent 55%),
    linear-gradient(180deg, #f6fbff, #eef6ff);
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 12px;
}

.auth-card {
  width: 100%;
  max-width: 520px;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(13, 61, 93, 0.15);
}

.auth-card .card-body {
  padding: 26px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 18px 10px;
}

.brand img {
  max-width: 220px;  
  width: 100%;
  height: auto;
}


.auth-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: .2px;
  color: #0f2d3e;
  margin: 6px 0 2px;
}

.auth-subtitle {
  text-align: center;
  color: rgba(15,45,62,.65);
  margin-bottom: 18px;
  font-size: .95rem;
}

.form-control, .input-group-text, .btn {
  border-radius: 12px !important;
}

.input-group-text {
  background: #f4f9ff;
  border: 1px solid #d7e6f5;
  color: rgba(15,45,62,.75);
}

.form-control {
  border: 1px solid #d7e6f5;
  background: #ffffff;
}

.form-control:focus {
  border-color: rgba(0,159,227,.55);
  box-shadow: 0 0 0 .2rem rgba(0,159,227,.12);
}

.btn-primary {
  background: var(--semades-blue);
  border-color: var(--semades-blue);
  font-weight: 700;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline-secondary {
  font-weight: 700;
}

.alert {
  border-radius: 14px;
}

.small-links a {
  text-decoration: none;
}

.small-links a:hover {
  text-decoration: underline;
}

.footer-note {
  text-align: center;
  color: rgba(15,45,62,.55);
  font-size: .85rem;
  margin-top: 10px;
}
