@font-face {
  font-family: "RobotoRegular";
  src: url(../font/Roboto/Roboto-Regular.ttf) format("truetype");
}

body {
  padding-top: 70px;
  font-size: 14px;
  color: #787878;
  font-family: RobotoRegular;
}

img {
  padding-bottom: 30px;
}

.link {
  padding-top: 20px;
}


.link:hover {
  cursor: pointer;
}

@media(min-width:769px) {
  .login-panel {
    border: 1px solid #cecece;
    border-radius: 0px;
    box-shadow: 4px 4px 4px #cecece;
    transition: 0.2s linear opacity;
    padding: 60px 40px;
  }
}

.btn-default {
  border: 2px solid #58c0b2;
  color: #58c0b2;
  font-size: 15px;
  text-transform: uppercase;
}

button.btn-green,
button.btn-green:hover,
button.btn-green:focus {
  border: 2px solid #58c0b2;
  border-radius: 40px;
  background-color: #58c0b2;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  outline: none;
}

button.btn-white,
button.btn-white:hover,
button.btn-white:focus {
  border: 2px solid #58c0b2;
  border-radius: 40px;
  color: #58c0b2;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  text-transform: uppercase;
  outline: none;
}

.form-control:focus {
  border-color: #CCCCCC;
  color: #787878;
  box-shadow: inset 0 0 0 #CCCCCC, 0 0 0 #CCCCCC;
  outline: none !important;
}

.buttons {
  display: inline-flex;
  margin-top: 5%;
}

/*-----Backdrop-----*/
.backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
}

/*---End Backdrop---*/
/*---Spinner style---*/
.lds-ring {
  display: flex;
  width: 64px;
  height: 64px;
  margin: auto;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #58c0b2;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #58c0b2 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*---End Spinner style---*/