html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 80px 0;
}

.logo-tags
{
  color: #5d97f8;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: #3b82f6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-box {
  height: 100%;
  border-radius: 1rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.launch-box {
  background-color: #f8fafc;
  border: 2px dashed #3b82f6;
}

.vendor-box {
  background-color: #1e3a8a;
  color: white;
}

.navbar-brand {
  font-weight: bold;
  font-family: monospace;
  font-size: 1.5rem;
}

.cta-box {
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 3rem;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3b82f6;
  font-family: monospace;
}

.vendor-box .countdown-number {
  color: white;
}

.verification-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.verification-alert.fade {
    transition: opacity 0.15s linear;
}

.verification-alert.fade.show {
    opacity: 1;
}