.app {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.home-logo {
  height: 50px;
}

.footer {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding: 20px 0 10px;
  display: flex;
}

.section-1 {
  margin-bottom: 10px;
}

.job-list-page {
  display: flex;
}

.job-list-hero {
  background-image: linear-gradient(-45deg, #2691cf 0%, #2b33a0 25%, #60367f 50%, #994343 100%);
  background-size: 300%;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  height: 200px;
  animation: 20s infinite animateBG;
  display: flex;
}

.job-list-title {
  color: #fff;
  margin: auto;
}

.jobs-container {
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  display: flex;
}

.job-card {
  border: 1px solid gray;
  border-radius: 20px;
  align-items: center;
  margin: 10px;
  padding: 20px;
  display: flex;
}

.job-logo {
  width: 100px;
}

.job-card-content {
  flex: 1;
}

.load-more-action {
  align-self: center;
}

.filter-panel-container {
  border: 1px solid green;
  border-radius: 20px;
  margin: 10px;
  padding: 10px;
}

.job-hero {
  align-items: center;
  margin: 20px;
  display: flex;
}

.job-detail {
  color: #222c;
  align-items: center;
  display: flex;
}

.job-detail-value {
  margin: 0 5px;
}

.load-more-action {
  flex-direction: column;
  align-items: center;
  margin: 20px;
  display: flex;
}

.load-more-btn {
  color: var(--background-color);
  background: none;
  border: none;
}

.job-title-link {
  color: var(--background-color);
  text-decoration: none;
}

.jvm-job-card-start {
  place-items: start end;
}

.jvm-jobs-details-card-profile-img {
  border: 2px solid var(--background-color);
  background: #fff;
  border-radius: 50%;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  overflow: hidden;
}

.jvm-jobs-details-card-profile-title .job-detail {
  color: #fff;
}

.jvm-jobs-details-card-profile-title .job-detail-icon {
  color: var(--background-color);
  justify-content: center;
  width: 19px;
  display: flex;
}

.container-fluid {
  padding: 0;
}

.markdown-body {
  color: #222;
  box-sizing: border-box;
  min-width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 45px;
  font-family: Montserrat;
}

@media (width <= 767px) {
  .markdown-body {
    padding: 15px;
  }

  .logo {
    height: 0 !important;
    min-height: 0 !important;
  }
}

.no-job-page {
  color: #fff;
}

.logo {
  align-items: center;
  height: 100%;
  min-height: calc(100vh - 74px);
  display: flex;
  position: relative;
}

.logo img {
  margin: auto;
  position: sticky;
  top: 0;
  bottom: 0;
}

.logo:after {
  content: "";
  z-index: -1;
  background-image: linear-gradient(-45deg, #2691cf 0%, #2b33a0 25%, #60367f 50%, #994343 100%);
  background-size: 300%;
  justify-content: center;
  width: 100%;
  height: 100%;
  animation: 20s infinite animateBG;
  position: absolute;
}

.auth-link {
  margin: 20px 0;
  display: block;
}

textarea.form-control {
  min-height: 200px;
  font-family: monospace;
}

.job {
  padding: 0 12px;
}

.job label {
  font-size: 18px;
  font-weight: 500;
}

.page-status-error {
  color: red;
  border: 2px solid red;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
}

.page-status-success {
  color: green;
  border: 2px solid green;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
}

.top-section, .form-text {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.form-submit-btn {
  width: 100%;
  margin-bottom: 20px;
}

@keyframes animateBG {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}
/*# sourceMappingURL=build.057e8ac7.css.map */
