.teach-form {
  background: #ffffff;
  max-width: 500px;
  border-radius: 10px;
  animation-name: slideDown;
  animation-duration: 0.75s;
}

.tablink:focus {
  outline: none;
  border-bottom: solid 1px #42abca;
}

.tab-bar {
  border-bottom: solid 1px gray;
  /* background-color: rgb(194, 194, 194); */
  height: 4.1rem;
}
.tablink {
  padding: 1rem;
  background-color: rgb(233, 233, 233);
  border: none;
}

.tab-highlight {
  background: linear-gradient(145deg, #fffffe, #d7d9d5);
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #42abca;
  /* box-shadow: inset 0 0 5px #bebebe; */
}

.reset-link {
  background: none !important;
  border: none;
  padding: 0 !important;
  color: #069;
  text-decoration: underline;
  cursor: pointer;
}
.disabled {
  pointer-events: none;
  background: rgba(169, 169, 169, 0.3);
}

.button-google {
  background-color: #fff;
  border-color: #357ebd;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
  border-radius: 2px;
  margin-left: 1rem;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  color: #333;
}

.button-google:hover {
  /* background-color: #EEE; */
  box-shadow: 0 0 2px 0 rgba(66, 133, 244, 0.3),
    0 2px 2px 0 rgba(66, 133, 244, 0.3);
}
.button-google:focus {
  box-shadow: 0 0 2px 0 rgba(66, 133, 244, 0.3),
    0 2px 2px 0 rgba(66, 133, 244, 0.3);
}

.google-logo {
  display: inline;
  vertical-align: middle;
  margin-right: 5px;
}

.google-signin {
  display: inline;
  vertical-align: middle;
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.75) !important;
}

.user_info {
  vertical-align: middle;
}
@media only screen and (max-width: 990px) {
  .user_info {
    padding-top: 1rem;
  }
}

.thumbnail {
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: inline;
  vertical-align: middle;
  margin-bottom: 0px;
  margin-right: 1rem;
}

.userName {
  display: inline !important;
  vertical-align: middle;
}

.login {
  cursor: pointer;
}

.bottom-signup {
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  padding: 1rem;
  border: solid 1px #e7e7e7;
  margin-bottom: 24px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
/* ******************* */
/* ******************* */
/*Start Animations */
/* ******************* */
/* ******************* */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.animate-left {
  position: relative;
  animation: animateleft 0.4s;
}
@keyframes animateleft {
  from {
    left: -30px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.animate-right {
  position: relative;
  animation: animateright 0.4s;
}
@keyframes animateright {
  from {
    right: -30px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
//- /* ******************* */
//- /* ******************* */
//- /*End Animations */
//- /* ******************* */
//- /* ******************* */
