/*
[Master Stylesheet] 
Project:Baby Face CSS
-------------------------------------------------------------------*/
:root {
    --primary-color: #FF457E;
    --secondary-color: #2E253A;
    --text-color: #899BB1;
    --white-color: #ffffff;    
    --button-bg: linear-gradient(90deg, #FF457E 0%, #FF9161 50%, #FF457E);
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    overflow-x:hidden;    
    font-family: 'Be Vietnam Pro';    
}
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;    
}
img, video {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;  
}
/* Scroll */
::-webkit-scrollbar {
    width: 5px;
} 
::-webkit-scrollbar-track {
    background-color: var(--white-color);    
}
::-webkit-scrollbar-thumb {    
    height: 100px;
    background: linear-gradient(90deg, #FF457E 0%, #FF9161 100%);
}
/* Scroll */
/* Login Page CSS Start */

/* Checkbox CSS Start */
.bf_checkbox .bf_checkboxInput {
    display: none;
}
.bf_checkbox .bf_checkboxInput + .bf_checkboxLabel {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    transition: all 0.3s;
}
.bf_checkbox .bf_checkboxInput + .bf_checkboxLabel:hover, .bf_checkbox .bf_checkboxInput:checked + .bf_checkboxLabel{
    color: var(--primary-color);
}
.bf_checkbox .bf_checkboxInput + .bf_checkboxLabel:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;    
    border: 1.5px solid #D0DCEA;
    background: var(--white-color);
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.bf_checkbox .bf_checkboxInput + .bf_checkboxLabel:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 4px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--white-color);
    border-bottom: 2px solid var(--white-color);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(-45deg) scale(0);
    -moz-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    opacity: 0;
}
.bf_checkbox .bf_checkboxInput:checked + .bf_checkboxLabel:before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.bf_checkbox .bf_checkboxInput:checked + .bf_checkboxLabel:after {
    opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    -moz-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    border-color: var(--white-color);
}
/* Checkbox CSS End */

/* Button CSS Start */
.bf_btn {
    min-width: 150px;
    min-height: 60px;    
    padding: 0 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color) !important;  
    border: none !important;  
    box-shadow: none !important;
    background: var(--button-bg);
    background-size: 200%, 1px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}   
.bf_btn:hover{
    background-position: 120%;    
}
/* Button CSS End */

/* Auth CSS Start*/
.bf_login_main_wrapper {
    overflow: auto;    
    font-family: 'Be Vietnam Pro';
    background-image: url(../images/auth-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bf_login_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 20px;
}
.bf_login_left{    
    width: 100%;
    text-align: center;
}
p.bf_auth_text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    background: #FA3F6C33;
    min-height: 55px;
    padding: 0 42px;
    border-radius: 50px;
}
.bf_auth_heading {
    font-size: 36px;
    font-weight: 600;
    color: var(--white-color);
    max-width: 650px;
    width: 100%;
    margin: auto;
    padding-top: 20px;
}
.bf_login_right {
    max-width: 620px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--white-color);
    padding: 70px;    
    min-height: 100vh;
    height: -webkit-fill-available;
}
.bf_auth_logo >img {
    width: 152px;
    height: 40px;
    object-fit: contain;
}
.bf_login_inner {
    width: 100%;
}
.bf_auth_content {
    padding: 10px 0 25px 0;
}
.bf_auth_content h1{
    font-size: 28px;
    font-weight: 400;
    color: var(--secondary-color);
}
.bf_auth_content h1 span{    
    font-weight: 700;    
}
.bf_auth_content p{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}
.bf_auth_fields {
    width: 100%;
}
.bf_input_wrap {    
    margin-bottom: 15px;
}
.bf_label{
    font-size: 14px;
    font-weight: 500;
    color: #000D33;
    display: block;
    margin-bottom: 5px;
}
.bf_input{
    position: relative;
}
.bf_input > input{
    width: 100%;
    height: 60px;
    background: #FAF9FF;
    border: 1px solid #E5E0FF;
    padding: 0 20px 0 50px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);  
    border-radius: 6px;  
}
.bf_input > input:focus{
    border: 1px solid var(--primary-color);
}
.bf_input > input::placeholder{
    color: #8A9BB1;
}
.bf_input > img{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 20px;
}
.bf_auth_btm_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.bf_forgot_pswrd{
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
}
.bf_login_btn .bf_btn{
    width: 100%;    
    margin-top: 10px;
}
.bf_forgot_pswrd{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.bf_forgot_pswrd:hover{
    color: var(--primary-color);
}
.bf_forgot_pswrd svg{
    width: 25px;
    height: auto;
    fill: var(--text-color);
    transition: all 0.3s;
}
.bf_forgot_pswrd:hover svg{
    fill: var(--primary-color);
}
.bf_forgot_text{
    margin-top: 20px;
}
/* Auth CSS End*/

/* Notification CSS Start */
/* success msg */
.bf_alert_msg {
    position: fixed;
    right: 70px;
    bottom: 20px;
    border-radius: 10px;
    background: var(--white-color);
    padding: 20px;
    z-index: 999;
    box-shadow: 0px 0px 40px 0px #362C621A;
    opacity: 1;
    visibility: visible;
    -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);
    -webkit-transform: translateY(130%);
    -moz-transform: translateY(130%);
    transform: translateY(130%);
}
.bf_alert_msg::before {
    content: '';
    width: 4px;    
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    border-radius: 0  10px 10px 0;
}
.bf_success_msg::before{
    background: #4FB93E;
}
.bf_error_msg::before{
    background: #ff5880;
}
.bf_alert_msg.bf_toster_open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
 .bf_msg_content {
    max-width: 200px;
    width: 100%;
}
.bf_close_icon {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}
.bf_msg_flex {
    display: flex;
	align-items: center;
    gap: 10px;
}
.bf_msg_icon {
    width: 35px;
}
.bf_msg_icon img {
    display: block;
}
.bf_msg_title{
    font-size: 16px;
    font-weight: 600;
}
.bf_error_msg .bf_msg_title {
    color: #ff5880;    
}
.bf_success_msg .bf_msg_title {
    color: #4FB93E;    
}
.bf_msg_text {
    font-size: 12px;
    font-weight: 400;
    color: #000D33;
    margin-top: 5px;
}
/* success msg */
/* Notification CSS End */
/* Login Page CSS End */

/* =================== Responsive CSS Start ========================= */
@media(max-width:1350px){
    .bf_login_right {
        max-width: 550px;
        padding: 40px;
    }
    .bf_auth_heading {
        font-size: 30px;
        max-width: 600px; 
        padding: 20px 10px 0 10px;
    }
    .bf_alert_msg {        
        right: 40px;        
    }
}
@media(max-width:1199px){
   .bf_login_right {
        max-width: 500px;
        padding: 30px;
    }    
    .bf_alert_msg {        
        right: 30px;        
    }
}
@media(max-width:991px){
    p.bf_auth_text {
        font-size: 18px;
        min-height: 40px;
        padding: 0 20px; 
    }
    .bf_auth_heading {
        font-size: 22px;
        max-width: 400px;        
    }
}
@media(max-width:767px){
    .bf_auth_content h1 {
        font-size: 23px;
    }
    .bf_auth_content p {
        font-size: 14px;
    }
    .bf_login_flex {
        flex-direction: column;
    }
    .bf_login_right {
        max-width: 100%; 
    }
    .bf_login_right {
        min-height: auto;
        height: auto;
        padding: 50px 30px;
    }
    .bf_login_left { 
        padding: 30px 10px 10px 10px;
    }
}
@media(max-width:480px){
   .bf_login_img {
        max-width: 300px;
        width: 100%;
        margin: auto;
    }
    p.bf_auth_text {
        font-size: 16px;
        min-height: 35px; 
    }
    .bf_auth_heading {
        font-size: 18px;
        max-width: 350px;
    }
    .bf_login_right { 
        padding: 30px 20px;
    }
    .bf_auth_content h1 {
        font-size: 20px;
    }
    .bf_auth_content p {
        font-size: 13px;
    }
    .bf_input > input { 
        height: 50px;        
        font-size: 14px;        
    }
    .bf_checkbox .bf_checkboxInput + .bf_checkboxLabel, .bf_forgot_pswrd {
        font-size: 14px;
    }
    .bf_auth_btm_flex {
        margin-top: -10px;
    }
    .bf_checkbox .bf_checkboxInput + .bf_checkboxLabel:before {
        width: 16px;
        height: 16px;
    }
    .bf_checkbox .bf_checkboxInput + .bf_checkboxLabel:after {
        left: 4px;
        width: 9px;
        height: 5px;
    }
    .bf_checkbox .bf_checkboxInput + .bf_checkboxLabel {
        padding-left: 22px;
    }
    .bf_btn {
        min-height: 50px;
        font-size: 15px;
    }
    .bf_login_btn .bf_btn { 
        margin-top: 0;
    }
    .bf_alert_msg {
        max-width: 285px;
        width: 100%;
        left: 0;
        right: 0;
        margin: auto;
    }
}
/* =================== Responsive CSS End ========================= */
