body {
  font-family: 'Josefin Sans', sans-serif; }

.login {
  /* TABS */
  /* FORM TYPOGRAPHY*/
  /* ANIMATIONS */
  /* Simple CSS3 Fade-in-down Animation */
  /* Simple CSS3 Fade-in Animation */
  /* Simple CSS3 Fade-in Animation */
  /* OTHERS */ }
  .login * {
    box-sizing: border-box; }
  .login a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400; }
  .login .page-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc; }
  .login .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 20px;
    margin: 5vmax 0; }
  .login #formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    text-align: center; }
  .login h2.inactive {
    color: #cccccc; }
  .login h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid; }
  .login .login-form {
    position: relative; }
  .login .get-otp {
    position: absolute;
    top: 2.6rem;
    right: 5.4rem;
    font-size: 2.5rem;
    font-weight: 600; }
  .login input[type=button], .login input[type=submit], .login input[type=reset] {
    border: none;
    color: #fff;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
    box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .login input[type=button]:hover, .login input[type=submit]:hover, .login input[type=reset]:hover {
    background-color: #39ace7; }
  .login input[type=button]:active, .login input[type=submit]:active, .login input[type=reset]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95); }
  .login input[type=text], .login input[type=password] {
    background-color: #fff;
    color: #0d0d0d;
    padding: 15px 1.5rem;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 85%;
    border: 2px solid #efefef;
    margin: 1rem 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px; }
  .login input[type=text]::placeholder, .login input[type=password]::placeholder {
    color: #cccccc; }
  .login .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
  .login .fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    animation-duration: 500ms; }
  .login .fadeIn.first {
    -webkit-animation-delay: 200ms;
    -moz-animation-delay: 200ms;
    animation-delay: 200ms; }
  .login .fadeIn.second {
    -webkit-animation-delay: 300ms;
    -moz-animation-delay: 300ms;
    animation-delay: 300ms; }
  .login .fadeIn.third {
    -webkit-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    animation-delay: 400ms; }
  .login .fadeIn.fourth {
    -webkit-animation-delay: 500ms;
    -moz-animation-delay: 500ms;
    animation-delay: 500ms; }
  .login .underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s; }
  .login .underlineHover:hover {
    color: #0d0d0d; }
  .login .underlineHover:hover:after {
    width: 100%; }
  .login *:focus {
    outline: none; }
  .login #icon {
    width: 60%;
    height: 100%; }
  .login * {
    box-sizing: border-box; }

/*  Turn on custom 8px wide scrollbar */
::-webkit-scrollbar {
  width: 6px;
  /* 1px wider than Lion. */
  /* This is more usable for users trying to click it. */
  background-color: rgba(0, 0, 0, 0);
  -webkit-border-radius: 100px; }

/* The scrollbar 'thumb' ...that marque oval shape in a scrollbar */
::-webkit-scrollbar-thumb:vertical {
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 100px;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0);
  min-height: 10px;
  /*Prevent it from getting too small */ }

::-webkit-scrollbar-thumb:vertical:active {
  background: rgba(0, 0, 0, 0.61);
  /* Some darker color when you click it */
  -webkit-border-radius: 100px; }

.selectize-dropdown {
  border: 1px solid !important;
  border-color: #dedede !important; }

.selectize-input {
  margin-top: 1rem;
  box-shadow: none !important;
  background-color: #fff !important;
  background-image: none !important;
  border: 1px solid #dedede !important; }
