@import url("https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --containerWidth: 1366px;
  --fontIbarra: "Ibarra Real Nova", serif;
  --fontMontserrat: "Montserrat", sans-serif;

  --black: #121212;
  --white: #ffffff;
  --rust: #c93426;
}

html,
body {
  height: 100%;
  font-family: var(--fontIbarra);
}

a {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

.password-reset {
  margin: 0;
}
.password-reset a {
  color: var(--rust);
}

.btn {
  font-family: var(--fontMontserrat);
  border-radius: 0;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}
.btn--black {
  background-color: var(--black);
  color: var(--white);
}
.btn--black:hover,
.btn--black:focus {
  background-color: var(--rust);
  color: var(--white);
}
.btn--outline {
  border: 1px solid var(--black);
  color: var(--black);
}
.btn--outline:hover,
.btn--outline:focus {
  background-color: var(--black);
  color: var(--white);
}
.btn--rust {
  background-color: var(--rust);
  color: var(--white);
}
.btn--rust:hover,
.btn--rust:focus {
  background-color: var(--black);
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.form-control,
.select2-container--bootstrap4 .select2-selection {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  border-color: var(--black);
  box-shadow: none;
}
.select2-container--bootstrap4.select2-container--focus .select2-selection {
  border-color: var(--black);
  box-shadow: none;
}
.select2-dropdown {
  border-color: var(--black) !important;
}

label {
  font-weight: 500;
}

.invalid-feedback {
  font-family: var(--fontMontserrat);
  font-weight: 500;
  font-size: 12px;
}

h3 {
  font-family: var(--fontIbarra);
  font-weight: 700;
  color: #1a1a1a;
}
h4 {
  font-family: var(--fontIbarra);
  font-weight: 700;
}

p {
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
}

.side-left p {
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-size: 16px;
  color: #6b6b6b;
  line-height: 26px;
}

.document-data p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: var(--fontMontserrat);
  font-weight: 400;
  font-size: 10px;
  line-height: 17px;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.card {
  border-radius: 0;
}

section {
  max-width: var(--containerWidth);
  margin: 0 auto;
  padding-inline: 1rem;
}

.section--navbar {
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  height: 76px;
  display: flex;
  align-items: center;
  margin: 2rem auto;
}
.navbar-logo {
  width: 200px;
}
/* .navbar-link {
  font-family: var(--fontMontserrat);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: #1A1A1A;
  display: block;
  transform: translateY(4px);
}
.navbar-link:focus,
.navbar-link:hover {
  color: #b60707;
  text-decoration: none;
} */

.section--navbar.--black {
  background-color: var(--black);
  color: var(--white);
  border: 0;
  height: 68px;
  margin-bottom: 50px;
  padding: 0;
  margin-top: 1rem;
}
.section--navbar.--black .buttons {
  background-color: var(--rust);
  color: var(--white);
  height: 68px;
  display: inline-flex;
  align-items: center;
  padding-inline: 1.5rem;
  margin-left: auto;
  transition: 0.3s all ease-in-out;
}
.section--navbar.--black .buttons:hover {
  opacity: 0.8;
}
.section--navbar.--black .buttons a {
  font-family: var(--fontIbarra);
  color: var(--white);
  font-size: 18px;
}

.section--content {
}

.text-container {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 1rem;
}

.form-container {
  margin: 0 auto;
  padding: 2rem 1rem;
}

.button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 600px) {
  .button-row .btn {
    flex-basis: 100%;
  }
}

.select-height-fix {
  height: 100% !important;
}
