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

body {
  font-family: "Barlow", sans-serif;
  min-height: 100vh;
  background-color: #0a1628;
  overflow-x: hidden;
}

.gcs-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 18% 62%, rgba(26, 79, 160, 0.55) 0%, transparent 65%), radial-gradient(ellipse 60% 50% at 80% 28%, rgba(10, 22, 40, 0.9) 0%, transparent 70%), url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1600&q=80") center/cover no-repeat;
}
.gcs-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.78) 0%, rgba(10, 22, 40, 0.28) 50%, rgba(10, 22, 40, 0.82) 100%);
}
.gcs-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 2px at 22% 34%, rgba(245, 158, 11, 0.9) 0%, transparent 2px), radial-gradient(circle 2px at 56% 21%, rgba(245, 158, 11, 0.7) 0%, transparent 2px), radial-gradient(circle 2px at 74% 52%, rgba(245, 158, 11, 0.8) 0%, transparent 2px);
  animation: pulse-dots 3s ease-in-out infinite alternate;
}

@keyframes pulse-dots {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}
.gcs-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 32px 5%;
}

.gcs-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 5%;
  animation: fadeUp 0.9s ease both;
}
.gcs-brand__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  color: #f59e0b;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 30px;
  width: fit-content;
}
.gcs-brand__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
.gcs-brand__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.93;
  text-transform: uppercase;
}
.gcs-brand__title span {
  color: #f59e0b;
}
.gcs-brand__subtitle {
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.gcs-brand__desc {
  margin-top: 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 400px;
}
.gcs-brand__stats {
  display: flex;
  gap: 44px;
  margin-top: 52px;
}

.stat__num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.stat__num span {
  color: #f59e0b;
}
.stat__label {
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gcs-card-wrap {
  width: 100%;
  max-width: 460px;
  flex-shrink: 0;
  animation: slideIn 0.9s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gcs-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 44px 40px 38px;
  position: relative;
  overflow: hidden;
}
.gcs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a4fa0, #f59e0b, #2563eb);
}
.gcs-card__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.1;
  margin-bottom: 6px;
}
.gcs-card__sub {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 26px;
}
.gcs-card__footer {
  text-align: center;
  font-size: 0.84rem;
  color: #64748b;
  margin-top: 20px;
}
.gcs-card__footer a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.gcs-card__footer a:hover {
  color: #1a4fa0;
  text-decoration: underline;
}

.gcs-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 30px;
}
.gcs-logo__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a4fa0, #2563eb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gcs-logo__icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.gcs-logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gcs-logo__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: 0.06em;
  line-height: 1;
}
.gcs-logo__tagline {
  font-size: 0.67rem;
  color: #64748b;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gcs-field {
  margin-bottom: 16px;
}
.gcs-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.gcs-field__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.gcs-field__row label {
  margin-bottom: 0;
}
.gcs-field__error {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 5px;
}

.gcs-input-wrap {
  position: relative;
}

.gcs-input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  fill: #64748b;
  pointer-events: none;
}

.gcs-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  color: #0a1628;
  background: #f1f5f9;
  border: 1.5px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
}
.gcs-input::placeholder {
  color: #64748b;
}
.gcs-input:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.gcs-input--error {
  border-color: #ef4444;
  background: #fff5f5;
}

.gcs-forgot {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}
.gcs-forgot:hover {
  color: #1a4fa0;
  text-decoration: underline;
}

.gcs-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.gcs-remember input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
  cursor: pointer;
  flex-shrink: 0;
}
.gcs-remember label {
  font-size: 0.83rem;
  color: #334155;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}

.gcs-btn-signin {
  display: block;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #1a4fa0 0%, #2563eb 100%);
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), filter 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.gcs-btn-signin:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  filter: brightness(1.07);
}
.gcs-btn-signin:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.gcs-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 9px;
  font-size: 0.72rem;
  color: #64748b;
}
.gcs-secure svg {
  width: 13px;
  height: 13px;
  fill: #64748b;
  flex-shrink: 0;
}

.gcs-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
}
.gcs-divider::before, .gcs-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.gcs-social {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.gcs-social__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 8px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.gcs-social__btn:hover {
  border-color: #2563eb;
  background: #f1f5f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  color: #334155;
  text-decoration: none;
}

.gcs-support-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #64748b;
  text-decoration: none;
}
.gcs-support-link:hover {
  color: #2563eb;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@media (max-width: 960px) {
  .gcs-brand {
    display: none;
  }
  .gcs-wrapper {
    justify-content: center;
    padding: 24px 16px;
  }
  .gcs-card-wrap {
    max-width: 440px;
  }
}
@media (max-width: 480px) {
  .gcs-card {
    padding: 32px 22px 28px;
  }
  .gcs-social {
    flex-direction: column;
  }
}

/*# sourceMappingURL=login.css.map */
