:root {
  --primary-color: #0058ff;
  --main-bg: #fafafa;
  --secondary-bg: #f4f4f4;
  --text-color: #070707;
}
.required::after {
  content: " *";
  color: red;
  font-weight: bold;
}
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--secondary-bg);
  color: var(--text-color);
  height: 100%;
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1;
}
/* Start Navbar Styles */
.custom-navbar {
  background-color: var(--main-bg);
  border-bottom: 1px solid #e6e6e6;
  padding: 14px 0;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 16px;
  }

  .navbar-nav {
    gap: 4px;
  }

  .d-flex {
    margin-top: 12px;
    flex-direction: column;
  }

  .btn-white,
  .btn-blue {
    width: 100%;
    text-align: center;
  }
}

/* End Navbar Styles  */

/* Button Styles */
.btn-white {
  background-color: #ffffff;
  color: var(--primary-color);
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

.btn-white:hover {
  background-color: var(--secondary-bg);
  color: var(--primary-color);
}

.btn-blue {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

.btn-blue:hover {
  background-color: #004be0;
  border-color: #004be0;
  color: #ffffff;
}
/* End Button Styles  */

/* Card Styles */
.card {
  background-color: #ffffff;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 88, 255, 0.08);
}

.card-text {
  color: #070707;
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-card {
  position: relative;
}

/* Step Card Styles */
.step-number {
  width: 56px;
  height: 56px;
  background-color: #0058ff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 88, 255, 0.25);
  position: relative;
  z-index: 2;
}

.step-card .card {
  margin-top: -35px;
  background-color: #ffffff;
  transition: 0.2s ease;
}

.step-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 88, 255, 0.08);
}

.step-card p {
  color: #555555;
  line-height: 1.6;
}

/* Accordion Styles */
.accordion-item {
  background-color: #ffffff;
  box-shadow: none;
}

.accordion-button {
  background-color: #ffffff;
  color: #070707;
  box-shadow: none;
  padding: 1.25rem 1.5rem 0.5rem;
  font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #070707;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  color: #555555;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Styles */
.footer-link {
  color: #070707;
  font-size: 0.95rem;
  padding: 0;
  text-decoration: none;
}

.footer-link:hover {
  color: #0058ff;
}

.social-link {
  width: 38px;
  height: 38px;
  background-color: #0058ff;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.social-link:hover {
  background-color: #0048d6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero-title {
  color: #070707;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 700px;
}

.hero-text {
  color: #070707;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
}

.btn-blue {
  background-color: #0058ff;
  color: #ffffff;
  border: 1px solid #0058ff;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-blue:hover {
  background-color: #0048d6;
  border-color: #0048d6;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: #0058ff;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-white:hover {
  border-color: #0058ff;
  transform: translateY(-2px);
}

.hero-points span {
  color: #070707;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-points i {
  color: #0058ff;
  margin-right: 6px;
}

.hero-preview {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 88, 255, 0.08);
  overflow: hidden;
}

.preview-header {
  height: 64px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #0058ff;
}

.preview-search {
  background-color: #fafafa;
  border: 1px solid #eeeeee;
  border-radius: 999px;
  padding: 8px 16px;
  color: #888888;
  font-size: 0.85rem;
}

.preview-content {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 330px;
}

.preview-sidebar {
  background-color: #fafafa;
  border-right: 1px solid #eeeeee;
  padding: 20px;
}

.preview-sidebar div {
  font-size: 0.85rem;
  padding: 10px 12px;
  border-radius: 10px;
  color: #070707;
  margin-bottom: 8px;
}

.preview-sidebar .active {
  background-color: #eaf1ff;
  color: #0058ff;
  font-weight: 700;
}

.preview-main {
  padding: 24px;
}

.preview-card {
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 18px;
  background-color: #ffffff;
}

.preview-card strong {
  display: block;
  font-size: 1.6rem;
  color: #070707;
}

.preview-card span {
  color: #555555;
  font-size: 0.85rem;
}

.candidate-list {
  border: 1px solid #eeeeee;
  border-radius: 16px;
  overflow: hidden;
}

.candidate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #eeeeee;
  font-size: 0.9rem;
}

.candidate-item:last-child {
  border-bottom: none;
}

.status {
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.75rem;
}

.status.valid {
  background-color: #e8f8ef;
  color: #1f9d55;
}

.status.pending {
  background-color: #fff3df;
  color: #d97706;
}

.status.shared {
  background-color: #eaf1ff;
  color: #0058ff;
}

@media (max-width: 768px) {
  .preview-content {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-search {
    display: none;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding-top: 80px;
  padding-bottom: 90px;
  border-top: 1px solid #e5e5e5;
}

.pricing-title {
  color: #070707;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 620px;
}

.pricing-subtitle {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 580px;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 18px;
  padding: 48px 32px 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 88, 255, 0.08);
}

.pricing-card-title {
  color: #070707;
  font-size: 1.35rem;
  font-weight: 800;
}

.pricing-card-text {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 260px;
}

.pricing-role {
  color: #070707;
  font-size: 1.25rem;
  font-weight: 800;
}

.pricing-price {
  color: #0058ff;
  font-size: 2rem;
  font-weight: 800;
}

.btn-blue {
  background-color: #0058ff;
  color: #ffffff;
  border: 1px solid #0058ff;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-blue:hover {
  background-color: #0048d6;
  border-color: #0048d6;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: #0058ff;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-white:hover {
  border-color: #0058ff;
  color: #0058ff;
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .pricing-card {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* About Section Styles */

.about-section {
  padding-top: 80px;
  padding-bottom: 90px;
  border-top: 1px solid #e5e5e5;
}

.about-title {
  color: #070707;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.about-text {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 540px;
}

.about-panel {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 18px;
  padding: 32px;
}

.about-panel-title {
  color: #070707;
  font-size: 1.5rem;
  font-weight: 800;
}

.about-pill {
  border: 1px solid #dddddd;
  border-radius: 999px;
  padding: 12px 18px;
  color: #070707;
  font-size: 0.95rem;
  margin-bottom: 12px;
  background-color: #ffffff;
}

.about-card {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 18px;
  padding: 32px;
  min-height: 150px;
  transition: 0.2s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 88, 255, 0.08);
}

.about-card-title {
  color: #070707;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-card-text {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0;
}

/* FAQ Section Styles */
.faq-page {
  min-height: calc(100vh - 90px);
  padding: 70px 0 100px;
  border-top: 1px solid #e5e5e5;
}

.faq-header {
  max-width: 700px;
}

.faq-title {
  color: #070707;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.faq-subtitle {
  color: #666666;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.faq-accordion {
  margin-top: 20px;
}

.faq-accordion .accordion-item {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background-color: #ffffff;
  color: #070707;
  font-weight: 800;
  padding: 18px 28px;
  border-radius: 16px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #070707;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  color: #666666;
  padding: 0 28px 22px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Icône + bleue à droite */
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  color: #0058ff;
  font-size: 1.4rem;
  font-weight: 800;
  width: auto;
  height: auto;
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: #0058ff;
  transform: none;
}
/* Contact Section Styles */
.contact-page {
  min-height: calc(100vh - 90px); 
  padding: 80px 0 100px;
  border-top: 1px solid #e5e5e5;
}

.contact-title {
  color: #070707;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.contact-subtitle {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: #eaf1ff;
  color: #0058ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info-item h3 {
  color: #070707;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-card {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 18px 40px rgba(0, 88, 255, 0.06);
}

.contact-card-title {
  color: #070707;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card-text {
  color: #666666;
  font-size: 1rem;
  margin-bottom: 28px;
}

.form-label {
  color: #070707;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  background-color: #fafafa;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 13px 15px;
  color: #070707;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  background-color: #ffffff;
  border-color: #0058ff;
  box-shadow: 0 0 0 0.2rem rgba(0, 88, 255, 0.12);
}

.form-check-input:checked {
  background-color: #0058ff;
  border-color: #0058ff;
}

.form-check-label {
  color: #666666;
  font-size: 0.9rem;
}

.btn-blue {
  background-color: #0058ff;
  color: #ffffff;
  border: 1px solid #0058ff;
  border-radius: 10px;
  padding: 13px 30px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-blue:hover {
  background-color: #0048d6;
  border-color: #0048d6;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 28px;
  }
}
/* Login Page Styles */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42% 58%; 
  border: 1px solid #e5e5e5;
}

.login-left {
  background-color: #0058FF;
  color: #ffffff;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
}
 

.login-content {
  margin-top: 150px;
}

.login-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
}

.login-content p {
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.login-card {
  width: 100%;
  max-width: 410px;
  background-color: #ffffff;
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  padding: 56px 42px;
}

.login-card h2 {
  color: #070707;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: #070707;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-group input {
  width: 100%;
  height: 48px;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background-color: #ffffff;
  color: #070707;
  padding: 0 16px;
  font-size: 0.95rem;
  outline: none;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-group input:focus {
  border-color: #0058FF;
  box-shadow: 0 0 0 4px rgba(0, 88, 255, 0.12);
}

.login-button {
  width: 100%;
  height: 48px;
  background-color: #0058FF;
  border: 1px solid #0058FF;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 10px;
}

.login-button:hover {
  background-color: #0048d6;
  border-color: #0048d6;
  transform: translateY(-2px);
}

.forgot-password {
  text-align: center;
  margin-top: 28px;
}

.forgot-password a {
  color: #0058FF;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .login-page {
    grid-template-columns: 1fr;
  }

  .login-left {
    padding: 40px 28px;
  }

  .login-content {
    margin-top: 80px;
  }

  .login-right {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .login-card {
    padding: 36px 24px;
  }

  .login-content h1 {
    font-size: 2.2rem;
  }
}
/* Registration Page Styles */
.register-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42% 58%; 
  border: 1px solid #e5e5e5;
}

.register-left {
  background-color: #0058FF;
  color: #ffffff;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
}

.register-brand {
  font-size: 1.55rem;
  font-weight: 800;
}

.register-content {
  margin-top: 130px;
}

.register-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
}

.register-content p {
  max-width: 430px;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.register-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.register-card {
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  padding: 46px 42px;
}

.register-card h2 {
  color: #070707;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #070707;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 48px;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background-color: #ffffff;
  color: #070707;
  padding: 0 16px;
  font-size: 0.95rem;
  outline: none;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0058FF;
  box-shadow: 0 0 0 4px rgba(0, 88, 255, 0.12);
}

.form-check-custom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 24px;
}

.form-check-custom input {
  margin-top: 4px;
  accent-color: #0058FF;
}

.form-check-custom label {
  color: #666666;
  font-size: 0.85rem;
  line-height: 1.4;
}

.register-button {
  width: 100%;
  height: 48px;
  background-color: #0058FF;
  border: 1px solid #0058FF;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.register-button:hover {
  background-color: #0048d6;
  border-color: #0048d6;
  transform: translateY(-2px);
}

.login-link {
  text-align: center;
  margin-top: 24px;
  color: #666666;
  font-size: 0.9rem;
}

.login-link a {
  color: #0058FF;
  font-weight: 800;
  text-decoration: none;
  margin-left: 6px;
}

.login-link a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .register-page {
    grid-template-columns: 1fr;
  }

  .register-left {
    padding: 40px 28px;
  }

  .register-content {
    margin-top: 80px;
  }

  .register-right {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .register-card {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .register-content h1 {
    font-size: 2.2rem;
  }
}

.reset-text {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 28px;
}