@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');


*{
    margin:0;
    padding:0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #414141;
    font-family: 'Roboto', sans-serif;    
}
.password-protected-wrapper {
    background-image: url('../images/pwd-protected-bg.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    min-height: 100vh;
    padding: 0 20px;
}
.shadow-box-radius{
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.17);
    border-radius: 12px;
}
.flx-box{
    display: flex;
    align-items: center;
    justify-content: center;   
    text-align: center;
}
.p-custom{
    padding: 30px 80px;
}
.bg-white{background: #FFFFFF;}
.pwd-coming-soon,.pwd-protect-content {
    width: 618px;
    height: 380px;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    transition: all ease 0.3s;
}
.pwd-protect-content {
    transform: translateY(110%);
}
.outer-box {
    width: 645px;
    height: 405px;
    overflow: hidden;
    position: relative;
    background-color: #fff; 
}
.pwd-coming-soon.hide {
    transform: translateY(-110%);
}
.pwd-protect-content.show {
    transform: translateY(0%);
}
.prt-store-logo {
    margin: 0 0 35px;
}
.prt-store-logo img {
    max-width: 240px;
}
.main-heading {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.comming-soon-content p{
    font-weight: 400;
    font-size: 17px;
    line-height: 32px;
    margin: 0 0 30px;
}
.sub-heading{
    font-weight: 500;
    font-size: 25px;
    line-height: 32px;
    margin: 0 0 30px;
}
.pwd-pro-link a{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: underline;
    color: #414141;
}
.pwd-pro-link i {
    margin-left: 6px;
    font-weight: 500;
}
.pwd-protect-content .content--block {
    max-width: 350px;
    width: 100%;
}
.pwd-protect-content .content--block .form-control {
    height: 40px;
    background: #FBFBFB;
    border: 1px solid #D7D7D7;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 14px;
    color: #414141;
    font-family: 'Roboto', sans-serif;  
}
.form-wrapper{margin: 0 0 15px;}
.pwd-protect-content .btn{
    height: 40px;
    background: #414141;
    border-radius: 6px;
    border-color: #414141;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    margin: 0 0 30px;
    transition: all ease 0.3s;
}
.pwd-protect-content .btn:hover,.pwd-protect-content .btn:focus,.pwd-protect-content .btn:active{
    outline: none;
    background-color: #302c2c !important;
    box-shadow: none !important;
}
.form-section .error-text {
    text-align: left;
    font-size: 13px;
    margin: 5px 0 0;
}
.pwd-protect-content .btn i {
    color: #fff;
    margin-left: 6px;
    display: none;
}
.back-btn a{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: underline;
    color: #414141;

}
.back-btn i{margin-right: 6px;}
.switch-to-login,.switch-to-comingsoon{cursor: pointer;}

@media (max-width:767px){
    .pwd-coming-soon, .pwd-protect-content {
        width: 90%;
        height: 320px;
    }
    .pwd-protect-content {
        height: 300px;
    }
    .p-custom {
        padding: 30px 20px;
    }
    .main-heading {
        font-size: 28px;
        line-height: 37px;
    }
    .comming-soon-content p {
        font-size: 15px;
        line-height: 25px;
        margin: 0 0 20px;
    }
    .sub-heading {
        font-size: 18px;
        line-height: 32px;
        margin: 0 0 20px;
    }
    .prt-store-logo img {
        max-width: 190px;
    }
}