/*-----------------------------------------------------------------------------------

    Template Name: 
    Version: 1.0.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    00 - Helpers (Variables & Mixins)
    01 - Basic (Typography, Common Classes)
        01.01 - Typography
        01.02 - Common Classes
    02 - Layout (Header, Footer, Section, Main Container/Wrapper and Page Header Styles)
        02.01 - Header
        02.02 - Footer
        02.03 - Main Content Wrapper, Sections & Section Heading
    03 - Modules (Template Design Elements as Modules and Third party Plugins Custom Styles)

-----------------------------------------------------------------------------------*/
/*===== 00 - Helpers (Variables) =====*/
/*----------------------------------------*/
/*  01. Helpers CSS
/*----------------------------------------*/
/*===== 01 - Basic (Typography, Common Classes) =====*/
/*----------------------------------------*/
/*  01. Template default CSS
/*----------------------------------------*/
/* Common Style */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  overflow-x: hidden;
  color: #4b5563;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: #111827;
}

h1 {
  font-size: 68px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

p {
  margin: 0;
}

caption {
  font-size: 12px;
}

strong {
  font-weight: 700;
}

a,
button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

*:focus {
  outline: none;
}

button:focus,
a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:hover {
  text-decoration: none;
}

button,
input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

hr {
  border-top-width: 2px;
}

.customBody {
  background-color: #f8f9fa;
}

/*----------------------------------------*/
/*  02. Classes CSS
/*----------------------------------------*/
.main-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.box-wrapper {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.section-header--title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}
.section-header--description {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
}
.section-header--last-modified {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}

.footer-area {
  text-align: center;
  padding: 2rem 1rem;
  color: #4b5563;
  font-size: 14px;
  background-color: #fff;
  color: #6b7280;
}

/*===== 02 - Layout =====*/
/*----------------------------------------*/
/*  01. Dashboard CSS
/*----------------------------------------*/
.dashboard--container {
  display: flex;
  min-height: 100vh;
}

.dashboard-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #004a93;
  margin-bottom: 20px;
}

/* Sidebar */
.dashboard-sidebar {
  width: 260px;
  background: #003366;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    z-index: 9;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .dashboard-sidebar.opened {
    transform: translateX(0);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
}

.dashboard-sidebar--logo {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dashboard-sidebar--logo a {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}

.dashboard-sidebar-toggle {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  line-height: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 1600px) {
  .dashboard-sidebar-toggle {
    display: none;
  }
}
.dashboard-sidebar-toggle svg {
  width: 1em;
  height: 1em;
}

.dashboard-sidebar--nav {
  padding: 16px;
  border-top: 1px solid #004a93;
}
.dashboard-sidebar--nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard-sidebar--nav li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 16px;
  text-wrap: nowrap;
}
.dashboard-sidebar--nav li a.active,
.dashboard-sidebar--nav li a:hover {
  background: #004a93;
}
.dashboard-sidebar--nav li a svg {
  margin-right: 12px;
}

.dashboard-sidebar--logout {
  padding: 24px 26px;
  margin-top: auto;
  border-top: 1px solid #004a93;
}
.dashboard-sidebar--logout-btn {
  margin: 0;
  padding-top: 0;
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-sidebar--logout svg {
  color: #f87171;
}

/* Main area */
.dashboard-main {
  flex: 1;
  width: calc(100% - 260px);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .dashboard-main {
    width: 100%;
  }
}
.dashboard-main--content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.dashboard-header {
  padding: 32px;
  padding-top: 80px;
  background-color: #004a93;
}
.dashboard-header--title {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.dashboard-header--description {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
.dashboard-header-toggle {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: #fff;
  font-size: 40px;
  line-height: 0;
  position: relative;
  top: -36px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 1600px) {
  .dashboard-header-toggle {
    display: none;
  }
}
.dashboard-header-toggle svg {
  width: 1em;
  height: 1em;
}

/* Summary cards */
.summary--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  background: #fff;
  border-radius: 0.75rem;
  padding: 25px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}
.summary-card--top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.summary-card--icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004a93;
  border-radius: 50px;
  background-color: #f9fafb;
}
.summary-card--label {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}
.summary-card--value {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #004a93;
}

.card .value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #004a93;
}

/* Table */
.table-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e2e8f0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.table-wrapper table thead {
  background: #f3f4f6;
}
.table-wrapper table tbody tr {
  border-top: 1px solid #e2e8f0;
}
.table-wrapper table tbody:hover {
  background: #f7fafc;
}
.table-wrapper table th,
.table-wrapper table td {
  padding: 1rem;
  text-align: left;
  color: #4b5563;
  text-wrap: nowrap;
}
.table-wrapper table th.price,
.table-wrapper table th.title,
.table-wrapper table td.price,
.table-wrapper table td.title {
  color: #004a93;
  font-weight: 500;
}
.table-wrapper table th {
  font-weight: 600;
  color: #4a5568;
}

.status {
  padding: 7px 12px 8px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}

.status.gewonnen {
  background: #c6f6d5;
  color: #22543d;
}

.status.nieuw {
  background: #bee3f8;
  color: #1e40af;
}

.status.verloren {
  background: #fed7d7;
  color: #9b2c2c;
}

.table-btn {
  display: inline-flex;
  align-items: center;
  background: #ff6b00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.3s linear;
}
.table-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.table-btn:hover {
  background: #248800;
}

/*----------------------------------------*/
/*  02. Mijn Profiel CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*  01. Header CSS
/*----------------------------------------*/
.header-area {
  background: #fff;
  padding: 1rem 3rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.09);
}
@media only screen and (max-width: 850px) {
  .header-area {
    padding: 1rem 1.5rem;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header--logo {
  font-weight: 600;
  font-size: 1.125rem;
  color: #111827;
}
.header--logo span {
  color: #004a93;
}
@media only screen and (max-width: 850px) {
  .header--main-menu {
    display: none;
  }
}
.header--menu-items {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.header--menu-items li a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 12px;
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  border-radius: 0.375rem;
}
.header--menu-items li a.active,
.header--menu-items li a:hover {
  background: #0069b4;
  color: #fff;
}
.header--menu-toggle {
  display: none;
}
@media only screen and (max-width: 850px) {
  .header--menu-toggle {
    display: block;
  }
}
.header--menu-toggle .menu-toggle {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: #d1d5db;
  cursor: pointer;
  color: #004a93;
  font-size: 36px;
  line-height: 0;
  border-radius: 5px;
}
.header--menu-toggle .menu-toggle svg {
  width: 1em;
  height: 1em;
}

/* -------------------------------------------------
       Sidebar (mobile)
------------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  flex-direction: column;
  display: none;
}
@media only screen and (max-width: 850px) {
  .sidebar {
    display: flex;
  }
}
.sidebar.open {
  transform: translateX(0);
}

.sidebar--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar--close {
  background: none;
  border: none;
  cursor: pointer;
  color: #004a93;
}
.sidebar--close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.sidebar--menu {
  flex: 1;
  padding: 1rem;
}
.sidebar--menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar--menu ul a {
  display: flex;
  padding: 1rem 1.25rem;
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-radius: 8px;
}
.sidebar--menu ul a.active,
.sidebar--menu ul a:hover {
  background-color: #004a93;
  color: #fff;
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
}
.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  04. From CSS
/*----------------------------------------*/
/* ---------- Form ---------- */
.from-wrapper--form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 32px;
}

.from-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media only screen and (max-width: 575px) {
  .from-row {
    flex-direction: column;
  }
}
.from-row > * {
  flex: 1;
}

.input-item {
  position: relative;
}
.input-item--label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 13px;
  color: #374151;
}
.input-item--label .required {
  color: var(--red);
}
.input-item--input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border 0.2s;
  font-size: 16px;
  line-height: 1.2;
}
.input-item--input:focus {
  outline: none;
  border-color: #004a93;
}
.input-item--input[readonly] {
  background-color: #f3f4f6;
}
.input-item .lock {
  position: absolute;
  right: 0.75rem;
  top: calc(50% + 12px);
  transform: translateY(-50%);
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #fff;
  padding: 0 0.5rem;
}
.input-item .lock svg {
  width: 18px;
  height: 18px;
  color: #004a93;
}
.input-item .lock span {
  line-height: 1.4;
}
.input-item .edit-icon {
  position: absolute;
  right: 2px;
  bottom: 2px;
  color: #4b5563;
  cursor: pointer;
  background-color: #f3f4f6;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.input-item .edit-icon svg {
  width: 16px;
  height: 16px;
  color: #4b5563;
}

.from-btn-row {
  display: flex;
}

.from-btn {
  background: #0069b4;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.2s ease-in-out;
}
.from-btn:hover {
  background: #1e3a8a;
}

.from-btn-two {
  display: inline-flex;
  align-items: center;
  background: #ff6b00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.3s linear;
  margin-left: auto;
}
.from-btn-two svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.from-btn-two:hover {
  background: #248800;
}

/*----------------------------------------*/
/*  05. Nieuwe Lead CSS
/*----------------------------------------*/
/* ---------- Form ---------- */
.from-wrapper-two {
  display: grid;
  gap: 1.5rem;
  margin-top: 30px;
}

.from-wrapper-two-title {
  font-weight: 600;
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d1d5db;
}

.input-item-two--label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #111827;
  font-size: 0.875rem;
}
.input-item-two--label .required {
  color: #ff0000;
}
.input-item-two--input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 1rem;
  color: #111827;
}
.input-item-two--input:focus {
  outline: none;
  border-color: #004a93;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}
.input-item-two select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.input-item-two textarea {
  min-height: 80px;
  resize: vertical;
}

/* ---------- File Upload ---------- */
.upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: border 0.2s;
}
.upload-area:hover {
  border-color: #004a93;
}
.upload-area.dragover {
  border-color: #004a93;
  background: #ebf8ff;
}
.upload-area svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #004a93;
  margin-bottom: 0.75rem;
}
.upload-area p {
  color: #4b5563;
  font-size: 0.875rem;
  margin: 0.5rem 0;
}
.upload-area p span {
  font-weight: 500;
  color: #2563eb;
}
.upload-area input[type="file"] {
  display: none;
}

/* ---------- Preview List ---------- */
.preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.preview-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.preview-item .doc {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #4b5563;
  background: #f1f5f9;
}
.preview-item .remove {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Submit Button ---------- */
.submit-btn {
  background-color: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: block;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #004a93;
}

/*----------------------------------------*/
/*  06. Documenten CSS
/*----------------------------------------*/
.dcumenten-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.dcumenten-page-title {
  text-align: center;
  padding-top: 2rem;
}
.dcumenten-page-title .title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}
.dcumenten-page-title .subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  margin-top: 12px;
}

/* ---------- Document Grid ---------- */
.dcumenten-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 48px 0;
}
@media only screen and (max-width: 767px) {
  .dcumenten-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.doc-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.doc-card--header {
  display: flex;
}
.doc-card--icon {
  width: 32px;
  height: 32px;
  color: #0069b4;
  flex-shrink: 0;
}
.doc-card--content {
  padding-left: 16px;
  flex: 1;
}
.doc-card--title {
  font-weight: 500;
  font-size: 16px;
  color: #111827;
}
.doc-card--desc {
  font-size: 14px;
  margin-top: 8px;
  color: #4b5563;
}
.doc-card--btn {
  background-color: #0069b4;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.2s;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.doc-card--btn:hover {
  background: #004a93;
}
.doc-card--btn svg {
  width: 1rem;
  height: 1rem;
  line-height: 0;
}

/* ---------- Help Box ---------- */
.help-box {
  background: #f0f9eb;
  border: 1px solid #7ed957;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.help-box--header {
  display: flex;
  align-items: flex-start;
}
.help-box--header .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #7ed957;
  margin-right: 8px;
  flex-shrink: 0;
}
.help-box--header .title {
  font-weight: 500;
  font-size: 16px;
  color: #111827;
  flex: 1;
}
.help-box .description {
  font-weight: 400;
  font-size: 14px;
  color: #4b5563;
  margin-top: 8px;
}
.help-box a {
  color: #0069b4;
  text-decoration: none;
  font-weight: 500;
}
.help-box a:hover {
  text-decoration: underline;
}

/*----------------------------------------*/
/* 07. Authentication CSS 
/*----------------------------------------*/
.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.auth-wrap {
  width: 100%;
  max-width: 478px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 767px) {
  .auth-wrap {
    max-width: 350px;
  }
}
.auth-logo {
  text-align: center;
}
.auth-logo a {
  font-weight: 600;
  font-size: 1.125rem;
  color: #004a93;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #111827;
}
.auth-logo a span {
  color: #78a2cc;
}
.auth-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #111827;
  margin-top: 24px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 32px;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.102);
}
.auth-btn--btn {
  background-color: #0069b4;
  color: #fff;
  padding: 10px 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.auth-btn p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #0069b4;
  margin-top: 16px;
  text-align: center;
  text-decoration: none;
}
.auth-bottom {
  margin-top: 24px;
  text-align: center;
}
.auth-bottom p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #4b5563;
}
