@font-face {
  font-family: "Overpass";
  src: url("../fonts/Overpass-Regular.ttf") format("ttf");
}
* {
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}

.auth-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
}

.auth-block {
  width: 540px;
  margin: 0 auto;
  border-radius: 12px;
  background: #202c33;
  color: #fff;
  padding: 32px;
}

.src-radar-background {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background: #525763;*/
  background: rgb(50, 104, 121);
  background: -moz-linear-gradient(
    180deg,
    rgba(50, 104, 121, 1) 0%,
    rgba(48, 62, 94, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(50, 104, 121, 1) 0%,
    rgba(48, 62, 94, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(50, 104, 121, 1) 0%,
    rgba(48, 62, 94, 1) 100%
  );
  background-size: cover;
  will-change: transform;
  z-index: 0;
}

body {
  padding: 0;
  margin: 0;
}

.src-radar-logo {
  background-image: url(../images/BTB-Radar-Logo-Light.png);
  max-width: 100%;
  min-height: 7em;
  background-position: center;
  margin-bottom: 1.5em;
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 10em;
}

.form-control {
  color: #202c33;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid transparent;
  transition: 0.15s;
  font-size: 14px;
}

.form-control:focus {
  border: 1px solid #3af;
}

.form-group label {
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 13px;
}

.form-horizontal label {
  line-height: 34px;
  margin-bottom: 0;
  padding-top: 0 !important;
}

.btn-auth {
  color: #ffffff !important;
  background-color: #ff6600;
}

.btn-auth:hover {
  background-color: #ff8822;
}

.btn {
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.1s ease;
  padding: 10px;
}

label.checkbox input {
  display: none; /* Hide the default checkbox */
}

/* Style the artificial checkbox */
label.checkbox span {
  height: 15px;
  width: 15px;
  border: 1px solid grey;
  display: inline-block;
  position: relative;
  margin-top: 2px;
}

/* Style its checked state...with a ticked icon */
[type="checkbox"]:checked + span:before {
  content: "\2714";
  position: absolute;
  top: -2px;
  left: 1px;
}
