.login-section {
    background: url(../images/login-bg.png)no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-inline: 60px;
}
.main{
    padding: 0;
}
.brand-logo-img{
    max-width: 200px;
    margin: auto;
    margin-bottom: 20px;
}
.brand-logo-img img{
    width: 100%;
}
.login_card_box {
    background-color: #1D232C; 
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    color: #fff;
    max-width: 500px;
    width: 100%;
}

.login_card_box .heading {
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: var(--main-font-size);
}

.form-control {
    background-color: #3B4758;
    border: none;
    color: #ccc;
}
.eye_btn{
   background-color: #3B4758;
   border: none;   
   color: #fff;
   border-radius: 0.375rem;
   padding-inline: 10px;
}
.form-label{
    font-size: var(--small-size);
    line-height: 20px;
}

.form-control::placeholder {
    color: #6c757d;
}

.form-control:focus {
    background-color: #3B4758;
    color: #fff;
    box-shadow: none;
    border-color: #0d6efd;
}
.custom-select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M9 1L5 5L1 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 8px;
    cursor: pointer;
}


@media (max-width:640px){
 .login-section {
    padding: 1rem;
 }   
 .login_card_box{
    padding: 1rem;
 }
 .brand-logo-img{
    max-width: 150px;
 }
 .login_card_box .heading{
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 16px;
 }
}