/*--------------------- Copyright (c) 2024 ----------------------- 
[Master Stylesheet] 
Project: WPAi
Version: 1.0.0 
-------------------------------------------------------------------*/
/*--- Global Style ----*/
:root {
    --bpcast-primary: #007BFF;
    --bpcast-title: #00182D;
    --bpcast-global: #898989;
    --bpcast-title-fontfamily: "Figtree", sans-serif;
    --bpcast-global-fontfamily: "Figtree", sans-serif;
    --bpcast-transition: all 0.3s;
    --bpcast-gradient: linear-gradient(180deg, #FF836A 0%, #FF3487 100%);

}
body {
    font-family: var(--bpcast-global-fontfamily);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    color: var(--bpcast-global);
    background: #fff;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #e4e4e4;
}

::-webkit-scrollbar-thumb {
    background-color: var(--bpcast-primary);
}
a,a:hover,a:focus,button,button:hover {
    color: var(--bpcast-global);
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: var(--bpcast-transition);
    -moz-transition: var(--bpcast-transition);
    -ms-transition: var(--bpcast-transition);
    -o-transition: var(--bpcast-transition);
    transition: var(--bpcast-transition);
}
a:hover {
    color: var(--bpcast-primary);
}
img {
    max-width: 100%;
}
input,select,button,button:focus,button:hover {
    outline: none;
    box-shadow: none;
}
ul,p {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: var(--bpcast-title);
    font-family: var(--bpcast-title-fontfamily);
}
.bpcast-btn {
    padding: 13px 15px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    color: #fff;
    background: var(--bpcast-primary);
    /* background: var(--bpcast-gradient); */
    font-weight: 700;
    position: relative;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}
.bpcast-btn:hover, .bpcast-btn:focus {
    color: #fff;
    transform: translateY(-5px);
}
.bpcast-btn-loader {
	display: none;
}
/*--- Auth Style ----*/
.bpcast-auth-wrapper {
    background-color: #0A192F;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 0;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-image: url(../images/auth/auth-bg-af.jpg);
}
.bpcast-auth-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/auth/auth-bg-af1.png);
    animation: zoom-in-zoom-out 6s ease-out infinite;
}
.bpcast-container {
    width: 100%;
    padding: 20px 0;
    max-width: 1160px;
    margin: auto;
    overflow:hidden;
}
.bpcast-row {
    max-width: 100%;
    width: 100%;
    margin: auto;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
}
.bpcast-logo {
    width: 100%;
    margin: 0 0 20px;
}
.bpcast-title-lg {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 17px;
    color: #ffff;
}
.bpcast-title-lg span {
    color: var(--bpcast-global);
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin: 10px 0 0;
}
.bpcast-title-paragraph{
    font-size: 16px;
    font-weight: 400;
    color: #D5D9E2;
    margin-bottom: 30px;
}
/*--- Auth Form  ---*/
/* .bpcast-from-box {
    width: 100%;
    padding: 70px 40px 70px;
    border-radius: 0 28px 28px 0;
    background-color: #f7dbd8;
    background-image: url(../images/auth/auth-form-bg.png);
    background-position: center;
    background-size: cover;
    max-width: 610px;
    display: flex;
    position: relative;
    flex-wrap: wrap;
} */
.bpcast-from-box:before {
    /* content: "";
    position: absolute; */
    /* background: linear-gradient(180deg, #FF836A 0%, #FF3487 100%); */
    /* top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .5;
    border-radius: 10px; */
}
.bpcast-from-box-inner {
    width: 100%;
    max-width: 480px;
    margin: auto;
    background: #fff;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background: #0E122F;
  
 
    position: relative;

}
.bpcast-from-box-inner::after{
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background-image: linear-gradient(#0E122F, #0E122F), linear-gradient(122.86deg, #8A2BE2 7.83%, #007BFF 54.38%, #00E6E6 100%);
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    z-index: -1;
    border-radius: 20px;
}
.bpcast-auth-info {
    padding: 20px 30px;
    text-align: center;
    margin: auto;
    max-width: 500px;
    width: 100%;
}
.bpcast-auth-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
    text-align: left;
    max-width: 410px;
    width: 100%;
}
.bpcast-auth-info p {
    font-size: 18px;
    font-weight: 500;
    color: #D5D9E2;
    text-align: left;
    max-width: 390px;
    width: 100%;
}
/* Input Style */
.bpcast-input-field {
    text-align: left;
    width: 100%;
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
}
.bpcast-input-field label {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 10px;
    display: block;
    color: #424242;
    width: 100%;
}
.bpcast-input-has-icon {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.bpcast-input-field input {
    width: 100%;
    min-height: 40px;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 11px;
    border: none;
    background: #FFFFFF0F;
    color: #fff;

}
.bpcast-input-field input:focus {
    border-color: var(--bpcast-primary);
}
.bpcast-input-field input,
.bpcast-input-field input:focus {
    -webkit-transition: var(--bpcast-transition);
    -moz-transition: var(--bpcast-transition);
    -ms-transition: var(--bpcast-transition);
    -o-transition: var(--bpcast-transition);
    transition: var(--bpcast-transition);
}
.bpcast-input-field .bpcast-input-has-icon input {
    padding-left: 50px;
}
.bpcast-input-field .bpcast-input-has-icon input.bpcast-pass{
    padding-right: 45px;
}
.bpcast-input-has-icon img {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.bpcast-input-has-icon img.bpcast-pws-icon{
    position: absolute;
    right: 20px;
    left: unset;
}
.bpcast-input-field input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #677790;
    font-weight: 400;
}
.bpcast-input-field input::-moz-placeholder { /* Firefox 19+ */
    color: #677790;
    font-weight: 400;
}
.bpcast-input-field input:-ms-input-placeholder { /* IE 10+ */
    color: #677790;
    font-weight: 400;
}
.bpcast-input-field input:-moz-placeholder { /* Firefox 18- */
    color: #677790;
    font-weight: 400;
}
.bpcast-pws-icon {
    cursor: pointer;
}
.bpcast-from-box .bpcast-btn {
    margin: 30px 0 0px;
}
.bpcast-auth-note p {
    font-size: 16px;
}
.bpcast-link  {
    color:#D5D9E2;
    font-weight: 700;
}
.bpcast-auth-actions {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin: -12px 0 20px;
    font-weight: 500;
}
.bpcast-checkbox label {
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    font-weight: 700;
    color: #D5D9E2;
    vertical-align: text-bottom;
}
.bpcast-checkbox {
    position: relative;
}
.bpcast-checkbox input {
    position: absolute;
    left: 0;
    opacity: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    z-index: 1;
    cursor: pointer;
}
.bpcast-checkbox label::before, .bpcast-checkbox span::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    flex: 0 0 auto;
    border: 1.5px solid rgb(255 255 255);
    transition: all 0.3s ease 0s;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.bpcast-checkbox>label::after, .bpcast-checkbox>span::after {
    content: "";
    position: absolute;
    top: 4.5px;
    left: 3px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(1);
    opacity: 0;
}
.bpcast-checkbox>input:checked~label::after, .bpcast-checkbox>input:checked~span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}
.bpcast-checkbox>input:checked~label::before, .bpcast-checkbox>input:checked~span::before {
    background: var(--bpcast-primary);
    border: 1px solid var(--bpcast-primary);
}
.bpcast-input-field label span {
    color: #E73D3E;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.bpcast-auth-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 40px;
    font-size: 16px;
}
.bpcast-auth-links a {
    position: relative;
}
.bpcast-auth-links a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
    height: 1px;
    width: 100%;
    background-color: var(--bpcast-global);
}
.bpcast-auth-links a:hover {
    color: var(--bpcast-primary);
}
.bpcast-auth-links a:hover:before {
    background-color: var(--bpcast-primary);
    width: 80%;
} 
.bpcast-auth-links a:hover:before,
.bpcast-auth-links a:before {
    -webkit-transition: var(--bpcast-transition);
    -moz-transition: var(--bpcast-transition);
    -ms-transition: var(--bpcast-transition);
    -o-transition: var(--bpcast-transition);
    transition: var(--bpcast-transition);
}
/* Alert  */
.bpcast-alert {
    display: flex;
    justify-content: center;
    background: #EFFAF7;
    flex-wrap: wrap;
    grid-gap: 10px;
    min-height: 50px;
    align-items: center;
    border-radius: 11px;
    padding: 10px 20px;
    margin: 0 0 30px;
    font-size: 17px;
}
.bpcast-align-left {
    display: grid;
    grid-template-columns: 25px 1fr;
    align-items: flex-start;
    text-align: left;
}
.bpcast-align-left img {
    margin-top: 3px;
}

/* alert start */
.bpcast-alert-wrap {
    position: fixed;
    right: 20px;
    top: 50px;
    max-width: 450px;
    z-index: 9991;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.bpcast-alert-wrap.bpcast-error,.bpcast-alert-wrap.bpcast-success {
    opacity: 1;
    visibility: visible;
}
.bpcast-alert-wrap>p {
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1);
    border-radius: 5px;
    padding: 15px 20px;
    margin: 0;
    color: #9ca2ab;
    font-size: 16px;
    position: relative;
    font-weight: 600;
    padding-left: 80px;
    -webkit-animation: alertanim 0.3s;
    -moz-animation: alertanim 0.3s;
    animation: alertanim 0.3s;
    border-left: 3px solid;
}
.bpcast-alert-wrap.bpcast-error > p {
    border-color: #ff4a4a;
}
.bpcast-alert-wrap>p::before {
    content: "Success";
    font-size: 16px;
    font-weight: bold;
    display: block;
    color: #0e141b;
}
.bpcast-alert-wrap>p::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bpcast-alert-wrap.bpcast-error>p::before {
    content: "Error";
}
.bpcast-alert-wrap.bpcast-error>p::after {
    background-image: url(../images/auth/error-icon.svg);
}
.bpcast-alert-wrap.bpcast-success>p::after {
    background-image: url(../images/auth/success.svg);
}
.bpcast-alert-wrap.bpcast-success > p {
    border-color: #0b996e;
}
.bpcast-input-error {
	border-color: #ff1639 !important;
}
.bpcast-auth-img img {
  animation: zoom-in-zoom-out 6s ease-out infinite;
  opacity: 0;
}
.bpcast-auth-wrapper.auth-anim .bpcast-auth-img img {
	opacity: 1;
}
.bpcast-auth-wrapper .bpcast-auth-img img,
.bpcast-auth-wrapper.auth-anim .bpcast-auth-img img {
	transition: all .3s;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(.9, .9);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(.9, .9);
  }
}

@-webkit-keyframes slide-up {
  0% {
    transform: translateY(100px);
	opacity: 0;
  }
  100% {
    transform: translateY(0);
	opacity: 1;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(100px);
	opacity: 0;
  }
  100% {
    transform: translateY(0);
	opacity: 1;
  }
}
.bpcast-auth-info h2,  .bpcast-auth-info p {
	opacity: 0;
}
.bpcast-auth-wrapper.auth-anim .bpcast-auth-info h2 {
    -webkit-animation: slide-up 0.85s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation: slide-up 0.85s cubic-bezier(0.65, 0, 0.35, 1) both;
	-webkit-animation-delay: 0.05s;
	  animation-delay: 0.05s;
}
.bpcast-auth-wrapper.auth-anim .bpcast-auth-info p {
    -webkit-animation: slide-up 0.85s cubic-bezier(0.65, 0, 0.35, 1) both;
    animation: slide-up 0.85s cubic-bezier(0.65, 0, 0.35, 1) both;
	 -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.bpcast-from-box-inner {
    transform: translatex(-100px);
	opacity: 0;
}
.bpcast-auth-wrapper.auth-anim .bpcast-from-box-inner {
    transform: translatex(0px);
	opacity: 1;
}
.bpcast-auth-wrapper.auth-anim .bpcast-from-box-inner,
.bpcast-auth-wrapper.auth-anim {
	transition: all 2s;
}
/**/
.bpcast-from-box {
    transform: translatex(-100px);
	opacity: 0;
}
.bpcast-auth-wrapper.auth-anim .bpcast-from-box {
    transform: translatex(0px);
	opacity: 1;
}
.bpcast-auth-wrapper.auth-anim .bpcast-from-box,
.bpcast-auth-wrapper.auth-anim {
	transition: all 1s;
}
.bpcast-from-box .bpcast-btn .bpcast-btn-loader {
    height: 18px;
    margin-left: 10px;
}
.bpcast-from-box .bpcast-btn {
    min-width: 120px;
    text-align: center;
    width: 100%;
}
.bpcast-reset-pass-form .bpcast-input-field .bpcast-input-has-icon input {
    padding-left: 20px;
}
.bpcast-reset-pass-form p, .bpcast-from-box-inner p{
    color:#D5D9E2
}
.bpcast-reset-pass-form p a{
    color:#fff;
}
.bpcast-from-box-inner p a{
    color:#fff;
}
.bpcast-logo h1.bpcast-logo-head {
    font-size: 30px;
    font-weight: 700;
    color: var(--bpcast-primary);
}
.bpcast-logo a img{
    max-width: 240px;
    width: 100%;
}
.bpcast-from-box-inner p {
    font-size: 13px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
/*---- Responsive Style ------*/
@media(max-width:1200px) {


}
@media(max-width:1199px) {
    .bpcast-container {
        padding: 20px 20px;
    }
    .bpcast-from-box {
        border-radius: 30px;
    }
    .bpcast-row{
        grid-template-columns: 1fr;
    }
}
@media(max-width:991px) {

}
@media(max-width:767px) {
    .bpcast-title-lg {
        font-size: 30px;
        margin: 0 0 25px;
    }  
    .bpcast-auth-links {
        grid-gap: 10px;
    }
    .bpcast-from-box {
        padding: 50px 30px 40px;
    }
    .bpcast-from-box-inner{
        max-width: 400px;
    }
}
@media(max-width:576px) {
    .bpcast-from-box {
        padding: 10px;
        border-radius: 10px;
    }
    .bpcast-from-box-inner {
        /* max-width: 100%;
        margin: auto; */
        padding: 30px;
        border-radius: 10px;
    }
    .bpcast-input-field .bpcast-input-has-icon input {
        padding-right: 40px;
    }
    .bpcast-input-has-icon img {
        left: 10px;
    }
    .bpcast-input-field input {
        font-size: 12px;
    }
    .bpcast-auth-img {
        margin: 0 0 20px;
    }
    .bpcast-auth-info h2 {
        font-size: 22px;
    }
    .bpcast-auth-info p {
        font-size: 16px;
    }
    .bpcast-input-field .bpcast-input-has-icon input{
        padding-left: 35px;
    }
    
}
@media(max-width:525px) {
    .bpcast-from-box-inner{
        max-width: 300px;
    }
    .bpcast-auth-info{
        max-width: 300px;
    }
    .bpcast-title-lg {
        font-size: 18px;
    }
    .bpcast-title-paragraph{
        font-size: 13px;
    }
    .bpcast-auth-info h2 {
        font-size: 18px;
    }
}
@media(max-width:425px) {
    .bpcast-from-box-inner{
        max-width: 230px;
    }
    .bpcast-auth-info{
        max-width: 230px;
    }
}
@media(max-width:350px) {
    .bpcast-from-box-inner{
        max-width: 200px;
    }
    .bpcast-auth-info{
        max-width: 230px;
        padding: 0;
        padding-bottom: 15px;
    }
}