@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/barlow-v12-latin-300.eot');
  src: local(''),
  url('/fonts/barlow-v12-latin-300.eot?#iefix') format('embedded-opentype'),
  url('/fonts/barlow-v12-latin-300.woff2') format('woff2'),
  url('/fonts/barlow-v12-latin-300.woff') format('woff'),
  url('/fonts/barlow-v12-latin-300.ttf') format('truetype'),
  url('/fonts/barlow-v12-latin-300.svg#Barlow') format('svg');
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/barlow-v12-latin-regular.eot');
  src: local(''),
  url('/fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'),
  url('/fonts/barlow-v12-latin-regular.woff2') format('woff2'),
  url('/fonts/barlow-v12-latin-regular.woff') format('woff'),
  url('/fonts/barlow-v12-latin-regular.ttf') format('truetype'),
  url('/fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/barlow-v12-latin-500.eot');
  src: local(''),
  url('/fonts/barlow-v12-latin-500.eot?#iefix') format('embedded-opentype'),
  url('/fonts/barlow-v12-latin-500.woff2') format('woff2'),
  url('/fonts/barlow-v12-latin-500.woff') format('woff'),
  url('/fonts/barlow-v12-latin-500.ttf') format('truetype'),
  url('/fonts/barlow-v12-latin-500.svg#Barlow') format('svg');
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/barlow-v12-latin-600.eot');
  src: local(''),
  url('/fonts/barlow-v12-latin-600.eot?#iefix') format('embedded-opentype'),
  url('/fonts/barlow-v12-latin-600.woff2') format('woff2'),
  url('/fonts/barlow-v12-latin-600.woff') format('woff'),
  url('/fonts/barlow-v12-latin-600.ttf') format('truetype'),
  url('/fonts/barlow-v12-latin-600.svg#Barlow') format('svg');
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/barlow-v12-latin-700.eot');
  src: local(''),
  url('/fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'),
  url('/fonts/barlow-v12-latin-700.woff2') format('woff2'),
  url('/fonts/barlow-v12-latin-700.woff') format('woff'),
  url('/fonts/barlow-v12-latin-700.ttf') format('truetype'),
  url('/fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
  font-display: swap;
}

html, body {
  font-size: 16px;
  font-family: Barlow,Arial, Helvetica, sans-serif;
  font-weight: 400;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html *, body * {
  box-sizing: border-box;
}

body {
  padding: 0;
  background-color: #fbfbfb;
}

.panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-width: 100%;
}

.form {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  min-width: 280px;
  width: min(100%, 480px);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 1rem;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
}

.form > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

.form__logo {
  font-weight: 700;
  width: 12rem;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.form__input {
  min-height: 3rem;
  border-radius: 3rem;
  border: 1px solid rgba(0,0,0,0.5);
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  font-size: 1rem;
}

.form__input {
  min-height: 3rem;
  border-radius: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  font-size: 1rem;
  background-color: #fafafa;
}

.form__input::placeholder {
  color: gray;
}

.form__input:-ms-input-placeholder {
  color: gray;
}

.form__input::-ms-input-placeholder {
  color: gray;
}

.form__input::placeholder {
  color: gray;
}

.form__input:focus {
  outline: 3px solid #30aaff;
  outline-offset: 3px;
}

.form__submit {
  background-color: #000000;
  border-color: #000000;
  font-size: 1rem;
  padding: 0 1rem;
  text-transform: uppercase;
  color: #ffffff;
  min-height: 3rem;
  border-radius: 3rem;
  letter-spacing: 0.1px;
  width: min(100%, 280px);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.form__submit:hover {
  background-color: #444444;
}

.form__submit:focus {
  outline: 3px solid #30aaff;
  outline-offset: 3px;
  background-color: #444444;
}


.alert {
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  width: min(100%, 400px);
  margin: 1rem auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert.success {
  background-color: #e9f7ef;
  color: #2c662d;
  border: 1px solid #a2d9b1;
}

.alert.error {
  background-color: #fcebea;
  color: #a94442;
  border: 1px solid #f5c6cb;
}

body {
  font-family: Arial, sans-serif;
}

.panel.success {
  color: #155724;
  padding: 15px;
  margin-bottom: 20px;
}

.crawl-data {
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.crawl-data h2 {
  color: #343A40;
  margin-bottom: 10px;
}

.crawl-data p {
  color: #6C757D;
  margin-bottom: 10px;
}

.crawl-data p:last-child {
  margin-bottom: 0;
}

.welcome-text {
  text-align: center;
  margin: 0;
  color: #333;
}

/* Container used on index.jade for automatic vertical spacing between elements */
.welcome-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 2rem; /* controls spacing between children */
  padding: 2rem;
}

.welcome-container a {
  color: #333;
  text-decoration: underline;
}




