/*html {
  --primary-color: #631f22;
}*/

html {
    --primary-color: #0687B8;
}

.centering-title {
    position: relative;
}

.primary-color {
  color: var(--primary-color);
}

.centering-title h4 {
    margin: 0;
    position: absolute;
    color: #ffffff;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #00000055;
    width: 100%;
    text-align: center;
    padding: 1rem;
}

.background-image {
  /* background-color: #682523; */
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

.background-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}

.login-screen :is(button, button:hover, button:active) {
  background: var(--primary-color) !important;
  box-shadow: var(--primary-color) !important;
  color: #fff;
}

.login-screen :is(input:focus, .form-control:focus) {
  border-color: var(--primary-color);
  box-shadow: inset 0 0 0 0.2px var(--primary-color);
}

.login-screen p a {
  color: var(--primary-color);
}

.custom-language-dropdown :is(button, button:active) {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.custom-language-dropdown button i {
  font-size: 25px;
}

.custom-language-dropdown button::after {
  display: none;
}

.custom-language-dropdown {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

.bg-focus {
  background-color: #444054;
}

.custom-language-dropdown .dropdown-header {
  margin-top: 0;
}

.drop-left {
  right: 0%;
  left: auto;
}

