::placeholder{
   color: var(--sec-font-color)!important;
}
.login-sec{
    display: flex;
    width: 100vw;
}
.login-header{
    color:var(--primary-color-dark);
    text-align: center;
    margin-top: 112px;
    font: 34px var(--medium-Mont-font);
}


/* ====== left box ====== */
.left-box{
    width: 608px;
    height: 100vh;
    background-color:var(--primary-color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.left-box-illust{
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
}
.login-logo{
    width: 175px;
}
.login-signup-link{
    color: #D4DBEE
}
.login-signup-link{
    position: absolute;
    bottom: 50px;
}
.login-signup-link p{
    text-transform: uppercase;
    color: #D4DBEE;
    font-size: 13px;
}
.login-signup-link p span{
    margin-left: 10px;
}
.login-signup-link p span a{
    color: var(--secondary-color)
}
.login-signup-link p span a:hover{
    text-decoration: underline;
}


/* ====== right box ====== */
.right-box{
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.right-box-illust1-topL{
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
}
.right-box-illust2-botR{
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 100px;
}
.right-box-illust1-topR{
    position: absolute;
    top: 30px;
    right: 0;
    width: 100px;
}
.right-box-illust2-botL{
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100px;
    transform: rotateY(180deg);
}

.form-box{
    width: 448px;
    margin: 64px auto 0;
}
.input-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    width: 100%;
    height: 79px;
    border-radius: 12px;
    border:1px solid var(--primary-color-light);
    background-color:var(--primary-color-light);
    margin-bottom: 16px;
    position: relative;
}
.form-label{
    width: 100%;
    text-transform: uppercase;
    font: 11px var(--semibold-sans-font);
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 12px;
}
.form-input{
    width: 100%;
    height: 100%;
    font: 16px var(--regular-sans-font);
    color:var(--primary-color-bg);
    border:none;
    background-color:var(--primary-color-light);
    letter-spacing: 1.5px;
}
.err-msg{
/*    text-align: right;*/
    padding:0 16px;
    color: red;
    font-size: 12px;
    margin-bottom: 16px;
}
#error-msg,#valid-msg{
    font-size: 12px;
    padding:0 16px;
}
#error-msg{
    color: red;
}
.login-butn-container{
    margin-top: 48px;
}
.form-butn{
    width: 100%;
    height: 54px;
    font: 16px var(--regular-sans-font);
    transition: .3s;
}
.form-butn:hover{
    box-shadow: 0px 8px 15px rgb(36 57 120 / 60%);
}
.forgot-pass{
    text-align: right;
}
.forgot-pass a{
    font:11px var(--regular-sans-font);
    color: var(--secondary-color);
}

.eye-box{
    position: absolute;
    top: 30px;
    right: 30px;
}
.eye-box[class^="eye"]{
    cursor: pointer;
}


/*password instruction in set password*/
.pass-instructions{
    position: relative;
}
.pass-instructions p{
   font:11px var(--regular-sans-font); 
   color: #7586BB;
   margin-bottom: 3px;
   margin-left: 16px;
}
.pass-instructions .pass-status{
   display: inline-block;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background-color: #E9CDA7;
   margin-right: 8px;
   position: relative;
}
.pass-instructions .pass-status-ok::before{
   content: '';
   position: absolute;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background-color: #B58E5B;
   z-index: 1;
}
.pass-instructions .pass-status-ok::after{
   content: '';
   position: absolute;
   top: 1px;
   left: 3px;
   width: 3px;
   height: 6px;
   border:solid #fff;
   border-width: 0 1px 1px 0;
   z-index: 1;
   transform: rotate(45deg);
}


/*opt section*/
.otp-desc{
   font-family: var(--regular-sans-font);
   color: var(--primary-color-bg);
   text-align: center;
   margin-bottom: 20px;
}
.otp-desc span{
   font-family: var(--bold-sans-font); 
}
.otp-process{
   text-transform: uppercase;
   font:13px var(--bold-sans-font);
   color: var(--secondary-color-light);
   text-align: center; 
   margin-bottom: 32px;
}
.otp-input-box{
   display: flex;
   justify-content: center;
   margin:95px 0;
}
.otp-input{
   width: 44px;
   border:none;
   border-bottom: 1px solid #D4DBEE;
   font:33px var(--medium-Mont-font);
   color: var(--secondary-color-light);
   text-align: center;
   margin-right: 11px;
}

/*forgot pass section*/
.forgot-sec .form-box{
   margin-top: 32px;
}
.forgot-sec .input-container{
   margin:95px 0 68px;
}
.forgot-sec .otp-desc{
   width: 90%;
   margin:0 auto;
}


/* ============== placeholder code ============== */


::-webkit-input-placeholder {
  color: var(--primary-color-bg);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--primary-color-bg);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--primary-color-bg);
}


#result {
  margin-bottom: 100px;
}

/* ============== Footer_style code ============== */

.footer_style{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_style ul{
    position: absolute;
    bottom: 50px;
}

.footer_style ul li {
    list-style: none;
    margin-left: 10px;
    line-height: 1;
    display: inline-block;  
    padding: 20px 0px;
    margin-bottom: 0px;
    font-size: 14px;
}

.footer_style ul li a:hover {
  text-decoration: underline;
  text-decoration-color: var(--primary-color-bg);
}

.footer_style ul li:not(:last-child)::after {
    border-right: 1px solid var(--primary-color-bg);
    content: "";
    padding: 1px;
    margin-left: 5px;
    height: 14px;
    display: inline-block;
}