*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: inherit;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.logo_image {
    width: 93px;
    height: auto;
}

.pd-login {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F9FAFB;
}

.pd-login .login-box {
  width: 70%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  box-shadow: 4px 0 4px 4px #f2f2f2;
}

.pd-login .login-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px  25px;
  padding-bottom: 10px;
}

.pd-login .login-box .logo {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

.pd-login .login-box .sign {
  letter-spacing: 0.2px;
  font-size: 18px;
  font-weight: bold;
  color: #222222;
  text-align: center;
  margin-bottom: 25px;
}

.pd-login .login-box form .group {
  width: 100%;
  margin-bottom: 25px;
}

.pd-login .login-box form .group label {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
  display: block;
  color: rgba(0, 0, 0, 0.4);
}

.pd-login .login-box form .group input {
  padding: 10px 0px;
  border: transparent;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #C2C9D1;
  border-radius: 5px;
  padding: 10px 5px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-login .login-box form .group input:focus {
  outline: none;
}

.pd-login .login-box form button {
  padding: 10px 0px;
  border: transparent;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  background-color: #0275d8;
  color: white;
  border-radius: 6px;
  margin-bottom: 20px;
}

.pd-login .login-box form button:focus {
  outline: none;
}

.pd-login .login-box form button:disabled {
  background: #9ABFDF;
}

.pd-login .login-box .forgot {
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  color: #0275d8;
  margin-bottom: 30px;
}

.pd-login .login-box .patient {
  font-size: 12px;
  text-align: center;
}

.pd-login .login-box .patient a {
  text-decoration: none;
  color: #0275d8;
}

.pd-login .login-box .doctor {
  width: 60%;
}
