/* ===== Google Font Import - Poformsins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mitr', sans-serif;
}

body{
    align-items: center;
    justify-content: center;
    background-color: #eaeaea !important;
}

a {
    text-decoration: none !important;
}

.navbar-brand img {
    margin-top: 7px;
    max-width: 220px;
    height: 4rem;
    width: 12rem;
  }

.container-log{
    position: relative;
    max-width: 430px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 20px;
}

.container-log .forms{
    display: flex;
    align-items: center;
    height: 440px;
    width: 200%;
    transition: height 0.2s ease;
}


.container-log .form{
    width: auto;
    padding: 30px;
    background-color: #fff;
    transition: margin-left 0.18s ease;
}

.container-log.active .forms{
    height: 600px;
}
.container-log .form .title{
    position: relative;
    font-size: 27px;
    font-weight: 600;
}

.form .title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: #f440c1;
    border-radius: 25px;
}

.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;
}

.input-field input{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid){
    border-bottom-color: #4070f4;
}

.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~ i{
    color: #4070f4;
}

.input-field i.icon{
    left: 0;
}
.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.form .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}

.checkbox-content input{
    margin-right: 10px;
    accent-color: #4070f4;
}

.form .text{
    color: #333;
    font-size: 14px;
}

.form a.text{
    color: #f392bb;
    text-decoration: none;
}
.form a:hover{
    text-decoration: underline;
}

.form .button{
    margin-top: 35px;
}

.form .button input{
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 6px;
    background-color: #f392bb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button input:hover{
    background-color: #db83a8;
}

.form .login-signup{
    margin-top: 30px;
    text-align: center;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #f392bb !important;
    --bs-btn-border-color: #f392bb !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #db83a8 !important;
    --bs-btn-hover-border-color: #d580a3 !important;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d580a3 !important;
    --bs-btn-active-border-color: #cc5989 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #f392bb !important;
    --bs-btn-disabled-border-color: #f392bb !important;
  }

  .afooter {
    padding: 50px 0px;
  }
  
  .afooter p {
    font-size: 14px;
    color: #fff;
    padding-left: 50px;
  }

  .footer {
    background-image: url(../images/meetings-bg.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 50px;
    
  }
  
  .footer p {
    color: #fff;
  }

  .bfooter {
    text-align: right;
    /*margin-top: 140px;*/
    border-top: 1px solid rgba(250,250,250,0.15);
    padding: 15px 0px;
  }
  
  .bfooter p {
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    padding-right: 50px;
  }
  
  .bfooter p a {
    color: #F392BB;
  }

  form .error-msg{
    margin:10px 0;
    display: block;
    background: crimson;
    color:#fff;
    border-radius: 5px;
    font-size: 20px;
    padding:10px;
 }