:root {
  --primary: #2c59e2;
  --primary-dark: #1e40af;
}

body {
  background-color: #f1f5f9;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1e293b;
  overflow-x: hidden;
}

.navbar {
  border-bottom: 1px solid #f1f5f9;
  padding: 15px 0;
  background: #fff !important;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.site-brand-text {
  font-weight: 800;
  color: #2c59e2;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-align: center;
}

.hero-area {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 100px 0;
  color: white;
  position: relative;
  text-align: center;
}
.hero-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-area h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
}
.hero-area p {
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.industry-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-container {
  max-width: 450px;
  margin: 60px auto;
  padding: 0 15px;
}

.register-container {
  max-width: 850px;
  margin: 50px auto;
  padding: 0 15px;
}

.auth-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
}

.auth-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 40px 30px;
  color: white;
  text-align: center;
}
.auth-header i {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 15px;
}
.auth-header h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}
.auth-header p {
  opacity: 0.7;
  font-size: 0.85rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: #2c59e2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f1f5f9;
}

label.form-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: #475569;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control, .form-select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid #afb0b1;
  background-color: #f8fafc;
  font-weight: 500;
  transition: all 0.2s ease;
}
.form-control:focus, .form-select:focus {
  border-color: #2c59e2;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(44, 89, 226, 0.1);
  outline: none;
}

.card-feature {
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
  background: #fff;
}
.card-feature:hover {
  border-color: #2c59e2;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(44, 89, 226, 0.1);
  color: #2c59e2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.btn-premium, .btn-auth {
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  background: #2c59e2;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(44, 89, 226, 0.15);
  font-size: 0.9rem;
  text-transform: capitalize;
}
.btn-premium:hover, .btn-auth:hover {
  background: #1e40af;
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 6px 15px rgba(44, 89, 226, 0.25);
}

.btn-auth {
  width: 100%;
  padding: 12px 25px;
}

@media (max-width: 768px) {
  .hero-area h1 {
    font-size: 2.2rem;
  }
  .btn-premium, .btn-auth {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 10px !important;
  }
}
.footer-site {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 30px 0;
}/*# sourceMappingURL=public-pages.css.map */