


*{box-sizing: border-box;}


 
body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-family:var(--primaryFont), Arial, sans-serif;
    background: var(--blackGradient);;
    color: var(--bodyTxt);
}

 

.login-screen{
    padding: 20px;
    width: 100%; 
    min-height: 100dvh; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

.login-screen__container{
    width: 480px;
    @media (max-width: 767px) and (orientation: portrait){
    width: 100%;
}
}


.form-box{
    padding: 56px;
    background:#0D131D;
    border-radius: 20px;
    margin: 32px auto;
    width: 100%; 
    @media (max-width: 767px) and (orientation: portrait){
       padding: 16px;
    }
}
 

.bo-logo,
.ps-logo{
    width: auto;
    object-fit: contain;
    display: flex;
    margin: auto;
}

.bo-logo{
    height: 60px;
}

.ps-logo{
    height: 32px;
}

.footer-txt{
    color: var( --bodyTxt);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}
.form-box h3{
    font-size: 20px; 
}

.form-box h3,
.form-box h5
{
    margin: 0;
    color: #FFFFFF;
    line-height: 1.2;
}
.form-box h5{
    font-size:14px;
    font-weight: 400;
}


.mb-32{
    margin-bottom: 32px!important;
}



input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

.btn-primary,.input-group input{
  
    border: 0;
    width: 100%;
    height: 40px;
    font-size: 14px;
    line-height: 22px;
    font-family: inherit;
}
.btn-primary {
   padding: 8px 16px;
   font-weight: 700;
   background: var(--primaryCtaBg);
   color: var(--primaryCtaTxt);
   border-radius: 8px;
}
.btn-primary:hover{
    background: var(--primaryCtaBgHover);
}
.btn-primary:active {
    background: var(--primaryCtaBgPressed);
}
.link-text{
    text-align: right;
}
.link-text a{
    color: var( --linkTxt);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}
.link-text a:hover{
    text-decoration: underline;
}

.input-group input{
    background: var(--inputBg);
    color:var(--inputTxt);
    padding: 12px 16px; 
    font-weight: 700;
    border-radius: 4px;
}
.input-group input::placeholder{
    font-weight: 400;
}
 
button{cursor: pointer;}

.bottom-logo,
.bottom-logo a
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bottom-logo a{
    width: auto;
    text-decoration: none;
}
.bottom-logo span{font-size:11.5px; color:  #FFFFFF;  padding: 2px 0 0 5px;}
.bottom-logo a:hover span{
    color: var( --linkTxt);
}



.login-screen__container.auth-screen{width: unset;}
.auth-screen p{font-size: 20px; color: #FFFFFF; margin: 0;}
.otp-align{
    display: flex;
    justify-content: center;
    gap: 32px;
}

.otp-align input{ 
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    border: 0;
    padding: 0;
    border-radius: 4px;
    font-family: inherit;
}

.notes,.resendEmail{margin-top: 32px!important;}
.notes ul{
    padding: 0 0 0 24px;

}
.notes ul li{margin-bottom: 12px; text-align: left;}

@media (max-width: 767px) and (orientation: portrait){
    .auth-screen p{font-size: 14px;}
    .otp-align{gap: 8px; justify-content: space-between;}
    .otp-align input{ width: 40px; height: 40px;   font-size: 24px;}

}