/* 
    --------------------------------    Color Tokens 
*/
/* White */
/* Black */
/* Gray */
/* Iris */
/* Sakura */
/* Wisteria */
/* Negative */
/* Positive */
/* 
    --------------------------------    Margin Tokens 
*/
.marginXS {
  margin-bottom: 8px;
}

.marginS {
  margin-bottom: 16px;
}

.marginM {
  margin-bottom: 24px;
}

.marginL {
  margin-bottom: 32px;
}

.marginXL {
  margin-bottom: 48px;
}

/* 
    --------------------------------    Base Styles 
*/
html, body {
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  font-family: "Rajdhani";
  font-size: 14px;
  padding: 0px;
  margin: 0px;
  color: #1B1820;
}

p, a, input, label, button {
  font-family: "Rajdhani";
  font-size: 14px;
  padding: 0px;
  margin: 0px;
}

/* 
    --------------------------------    Layout Styles 
*/
.alignCenter {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

#loginContainer {
  width: 248px;
  height: auto;
}

/* 
    --------------------------------    Input Field Styles 
*/
.inputDefault {
  position: relative;
  margin-bottom: 16px;
}
.inputDefault label {
  display: block;
  margin-bottom: 8px;
  color: #1B1820;
}
.inputDefault input {
  width: 246px;
  height: 38px;
  border: 1px solid #8D8D93;
  border-radius: 4px;
  color: #1B1820;
  text-indent: 8px;
  transition: border-color 0.3s;
}
.inputDefault input:hover {
  border-color: #4251C2;
}
.inputDefault input:focus {
  outline-color: #372549;
}
.inputDefault .inputErrorField {
  border: 1px solid #ED003B;
  width: 246px;
  height: 38px;
}
.inputDefault .inputErrorMessage {
  margin-top: 8px;
  font-weight: 600;
  color: #ED003B;
}
.inputDefault button {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  position: absolute;
  right: 0;
  top: 46px;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: stroke 0.3s;
}
.inputDefault button:hover svg {
  stroke: #4251C2;
}
.inputDefault button svg {
  position: absolute;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #FFFFFF;
  opacity: 1;
  visibility: visible;
  right: 0;
  bottom: 0;
  stroke: #4F4E54;
}
.inputDefault button #showPasswordEye,
.inputDefault button #showPasswordEyeClosed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}
.inputDefault button #showPasswordEye.hidden,
.inputDefault button #showPasswordEyeClosed.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.inputDefault button .morphIconEye path,
.inputDefault button .morphIconEye circle {
  animation: squashMorph 0.4s ease forwards;
}
@keyframes squashMorph {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.8);
  }
}

/* 
    --------------------------------    Button Styles 
*/
.button, .secondaryButton, .primaryButton {
  width: 248px;
  height: 40px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.button:focus, .secondaryButton:focus, .primaryButton:focus {
  outline-color: #372549;
  outline-offset: 2px;
}

.primaryButton {
  border: none;
  background-color: #4251C2;
  color: #FFFFFF;
}
.primaryButton:hover {
  background-color: #3246A2;
}

.secondaryButton {
  border: 1px solid #4251C2;
  background-color: #FFFFFF;
  color: #4251C2;
}
.secondaryButton:hover {
  background-color: #4251C2;
  color: #FFFFFF;
}

/* 
    --------------------------------    Divider Styles 
*/
#divider {
  width: 104px;
  height: 0.5px;
  background-color: #B0AFB2;
  margin: 32px auto;
}

/* 
    --------------------------------    Footer Styles 
*/
#loginFooter {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100vw;
}
#loginFooter p {
  margin-bottom: 16px;
  line-height: 21px;
}/*# sourceMappingURL=base.css.map */