/* import font plus jakarta sans */
/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");
html {
  font-size: 14px;
}
body {
  /* font-family:  'Lato', sans-serif; */
  /* font-family: 'Jakarta Sans', sans-serif; */
  font-family: "Plus Jakarta Sans", sans-serif;
  /* font-size: 8px; */
}
.input-group-text.fixedWidth {
  width: 100px;
}
.form-control:focus {
  box-shadow: none;
}
.app-container {
  background-image: url("./capitalLinX_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
}
.modal-content {
  position: relative;
  background-color: unset;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.modal-content::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.x-small {
  font-size: 0.8rem;
}
.btn-brand{
  background-color: #13608a;
  color: #fff;
  &:hover {
    background-color: #0f4f6b;
    color: #fff;
  }
}
.btn-link {
    /* font-weight: 400; */
    color: #13608a;
    /* text-decoration: none; */
}