:root{
  /*--ps-homestyle-color: #1D49A7;*/
  --ps-homestyle-color: #004aad;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #F0F0F3;
  font-size: 0.83rem;
}

.btn-login{
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  background: var(--ps-homestyle-color);
}

.ps-sys-color{
  color: #1D49A7;
}

.btn-login:hover{
  background: var(--ps-homestyle-color);
  color: #fff;
}

a:hover{
  color: #004AAD;
}

.ps-login-card{
  max-width: 400px;
  width: 100%;
}
.fw-500{
  font-weight: 500;
}


.ps-logo {
  display: block;
  margin: 0 auto;
  animation: zoomFade 1s ease forwards;
  margin-bottom: 34px;
}

@keyframes scale-bounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    transform: scale(1.15);
    opacity: 1;
  }
  60% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomFade{0%{opacity:0;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}


.ps-logo-pw{
  margin-bottom: 25px;
}

.ps-pw-request-btn{
  margin-top: 25px;
}

/*.ps-register-btn{*/
/*  padding: 1rem;*/
/*}*/

/*.login-wrapper{*/
/*  display: flex;*/
/*  align-items: center;*/
/*  height: auto;*/
/*  padding: 0;*/
/*  margin: 0;*/
/*  min-height: 100vh;*/
/*}*/
/*.inner-wrapper{*/
/*  width: 450px;*/
/*  margin: 0 auto;*/
/*  background-color: #fbfbfb;*/
/*  box-shadow: 0 0 0 1px rgba(20, 20, 31, 0.05), 0 1px 3px 0 rgba(20, 20, 31, 0.15);*/
/*  border-radius: 0.25rem;*/
/*  padding: 3rem 2rem 1rem;*/
/*}*/

/*.login-text{*/
/*  margin-block-end:.67em;color: #000;*/
/*  font-size: 24px;*/
/*  line-height: 1.142857143;*/
/*  margin-bottom: 30px;*/
/*  text-align: center;*/
/*  font-weight: 600;*/
/*}*/

input:not([type="checkbox"]) {
  display: block;
  width: 100%;
  height: 38px;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border: 0;
  background: #fff;
  box-shadow: 0 1px 1px 0 rgba(0,0,0,.1),0 1px 3px 0 rgba(0,0,0,.1);
  border-radius: 6px;
  color: #000;
  font-size: 15px;
  line-height: 16px;
  transition: box-shadow .1s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group{
  margin-top: 32px;
}

.form-group label{
  font-size: 15px;
  text-align: left;
  display: block;
  padding-bottom: 5px;
  font-weight: 500;
}

.ps-login-error-msg{
  position: relative;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 20px 20px 20px 20px;
  border-radius: 6px;
  border: 1px solid #ff002e;
  background: #fceeef;
  color: #000;
  line-height: 24px;
  font-size: 15px;
  font-weight: 500;
}

.ps-login-error-msg-success{
  position: relative;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 20px 20px 20px 20px;
  border-radius: 6px;
  border: 1px solid #198754;
  background: #e9f7ef;
  color: #000;
  line-height: 24px;
  font-size: 15px;
  font-weight: 500;
}

.ps-login-error{
  width: 100%;
}

@keyframes dynamicBlinker {
  0% {
    background-position: 100% 50%
  }
  to {
    background-position: 0 50%
  }
}

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

@media(max-width: 768px){
  .fz-sm-14{
    font-size: 14px;
  }
}

.ps-alert{
  padding: 10px 20px;
  border-radius: 12px;
}

.ps-alert.alert-success{
  background: #ebf7ea; color: #1e681d;
}
.ps-alert.alert-danger{
  background: #ffe6ea; color: #99001c;
}

.btn-warning, .ps-alert.alert-warning{
  background: #fff2d4;
  border: #ffe5aa;
}