:root {
	--autocomplete-background-input: #121212;
	--autocomplete-text-color: white;
}

html,
body {
  background-color: var(--autocomplete-background-input);
  height: 100%;
  width: 100%;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */

   &::-webkit-scrollbar { 
       display: none !important;
   }

}

html {
    overflow-y: hidden;
}

body {
  font-family: Raleway, Roboto, Arial, Helvetica, sans-serif;
  margin: 0px;

  &.prevent-select * {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
  }
}

.fill-width {
  width: 100%;
}

.login.v-application, .login.v-application .body-1 {
  font-family: Raleway, Roboto, Arial, Helvetica, sans-serif !important;
}

.welcome-container {
    width: 100vw;
    height: 100vh;

    .theme--dark.v-card {
 		 background-color: #121212;
        .v-toolbar {
  			background-color: #121212;
        }
    }
    .welcome {
      .left {
        background-image: url(https://cdn.planbook.com/images/planbook-leftside-clipart.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        justify-content: center;
        align-items: center;
        background-color: #0057c1;
        position: relative;

        .welcome-header {
          font-family: Raleway;	
          font-size: 50px;
        }

        .welcome-sub-header {
          font-family: Raleway;	
          font-size: 32px;
          font-weight: 300;
        }
        .welcome-text {
          margin-top: 18%;
          z-index: 1;
        }

        .welcome-image {
          position: absolute;
          bottom: 0px;
          margin: 0px auto; left: 0px;
          right: 0px; width: calc(100vw * 0.50);
          max-width: 900px;
        }
      }
      .right {
        background: #ffffff;

        max-height: 100vh;
        overflow: auto;

       .welcome-card-actions {
          display: block;
        }

        .welcome-btn-forgot {
          margin-top: 10px;
        }
      }
    }
}
theme--dark{
  background-color: #121212;
}
.primary--text{
	color: #0057c1;
}
.input-wrapper {
  --padding: 16px;
  --focus-color: black;
  position: relative;
  display: flex;
  align-items: center;
  border: .5px solid gray;
  border-radius: 5px;
  cursor: auto;
}

.input-wrapper:hover {
  border: 1.5px solid gray;
}

input {
  padding: var(--padding);
  border: 2px solid #0057c1;
  outline: none;
  border-radius: 25px;
  width: 100%;
}

.placeholder--light {
  position: absolute;
  background-color: white;
  color: gray;
  left: var(--padding);
  padding: 0 4px;
  margin-left: 20px;
  transition: transform 0.15s linear;
  cursor: auto;
}

.placeholder--dark {
  position: absolute;
  background-color: #121212;
  color: gray;
  left: var(--padding);
  padding: 0 4px;
  margin-left: 20px;
  transition: transform 0.15s linear;
  cursor: auto;
}

input:is(:focus) {
  border-left: none;
}


input:is(:focus) + .input-wrapper {
  border: 1px solid #0057c1;
}

input:is(:focus, :valid) + .placeholder--light {
  transform: translate(-20px,calc(-1 * var(--padding) - 12px));
  font-size: 14px;
  cursor:  text;
}

input:is(:focus, :valid) + .placeholder--dark {
  transform: translate(-20px,calc(-1 * var(--padding) - 12px));
  font-size: 14px;
  cursor:  text;
}

input:is(:focus) + .placeholder--light{
  color: #0057c1;
}

input:is(:focus) + .placeholder--dark{
  color: #0057c1;
}

.iconspan {
   float: left;
   margin-right: 6px;
   margin-top: -20px;
   position: relative;
   z-index: 2;
 }
 
 .errorBorder {
 	border: 1px solid red;
 }
 
.circle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid lightgray;
  margin: 10px;
  background-color: white;
  transition: transform .2s;
}

.circle-link.sso-button img {
  height: 22.5px;
}

.circle-link:hover {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  border: 1px solid #0057c1;
}

#email-required-label,#pass-required-label{
   overflow: hidden;
   max-height: 0;
   transition: max-height 0.3s ease-in-out;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
	-webkit-box-shadow: 0 0 0 30px var(--autocomplete-background-input) inset !important;
	-webkit-text-fill-color: var(--autocomplete-text-color);
}

.btn-sign-in{
	background-color: #d81632;
}

.button-text{
	text-transform: capitalize;
}

@keyframes shake{ 
  0%{ 
    transform: translateX(0) 
  } 
  25%{ 
    transform: translateX(5px); 
  } 
    
  50%{ 
    transform: translateX(-5px); 
  } 
  100%{ 
    transform: translateX(0px); 
  } 
}

.custom-error-div{
	width: 100%;
	text-align: center;
}

.forgot-button--dark:hover{
	background-color: #131821;
}

.forgot-button--light:hover{
	background-color: #ecf1fa;
}

@media only screen and (max-width: 959px) {
  .col-custom-left{
  	display: none;
    flex: 0 0 auto;
    width: 0%;
  }
  .col-custom-right {
  	display: block;
    width: 100%;
   }
   .responsive-logo{
   	width: 200px;
   	margin-top: 2.5px;
   }
}

@media only screen and (min-width: 960px) {
  .left{
  	display: block;
    flex: 0 0 auto;
    width: 66.8%;
  }
  .right {
  	display: block;
    flex: 0 0 auto;
    width: 33.2%;
   }
}