@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
    margin: 0px;
    color:#5949A7;
    font-family: 'Roboto', sans-serif;
}

input {
    border-color:#5949A7;
    border-radius: 8px;
    border-width: 1px;
    height: 20px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 230px;
}

.btn {
  margin-top: 20px;
  border-radius: 8px;
  border-width: 1px;
  background-color: #5949A7 ;
  border-color: #5949A7;
  color:#ffffff;
  padding: 10px;
  padding-left: 25px;
  padding-right: 25px;
  width: 250px;
}

.loader {
    width: 100%;
    height: 100%;
    background-color: rgba(0.8,0.8,0.8,0.8);
    position: absolute;
    z-index: 999;
    text-align: center;
    margin-top: -11%;
}
.loader img{
    margin-top: 55%;
    width: 50px;
}

.container {
    height: 80vh;
    background: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center */
}

.logo{
    text-align: center;
    margin-top: 5%;
    width: 100%;
}

.logo>img{
  width: 260px;
}

.logo-dr-teladoc{
  text-align: center;
  margin-top: 5%;
  margin-bottom: 5%;
  width: 100%;
}

.logo-dr-teladoc>img{
  width: 300px;
}

.box-teladoc {
    width: 300px;
    height: auto;
    background: #fff;
    align-items: center;
    text-align: center;
    margin-top: 10%
}

.email-teladoc{
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    color: #473F6F;
}

.app-teladoc{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #5949A7;
}

.no-vertical-margin {
    margin-top: 1px;
    margin-bottom: 1px;
}

.error-message {
    color: #FF3F6F;   
}

/* animations  */
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
