@font-face {
    font-family: 'PotroSansBangla';
    src: url('/font/PotroSansBangla-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Apply the font to specific elements */
body, .card ,.card-header, .card-body, a, h1, h2, h3, h4, h5,
label, input, span, p, a{
    font-family: 'PotroSansBangla', sans-serif;
}



*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color:crimson
}

form {
    background-color: rgba(255, 255, 255, 0.13);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 15px 35px;
    max-width: 90%; /* Adjust the max-width as needed */
}


form *{
    font-family: 'PotroSansBangla', sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

form h2{
    font-weight: 700;
    line-height: 42px;
    text-align: center;
	color:#E8B90E;
}

form h1{
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
}

form img{
	height:100px;
	padding-top:10px;
    display: block;
    margin: 0 auto 20px;
}

.login-side{
    margin: 70px 0 0  0;
}

.border{
    width:2px;
    height: 100%;
    background-color: #E8B90E;
    opacity: .3;
    margin: 0 auto;
}

label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}
input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}
::placeholder{
    color: #9a9a9a;
}
button{
    margin-top: 20px;
    width: 100%;
    background-color: #E8B90E;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    background-color: #E6A519;
    color: #080710;
}

#loading-icon {
    /* Add styles for the loading icon */
    width: 50px;
    height: 50px;
    margin: -28px 100px -20px 150px ;
}

.hidden {
    display: none;
}

.social{
  margin-top: 30px;
  display: flex;
}
.social div{
  background: red;
  width: 150px;
  border-radius: 3px;
  padding: 5px 10px 10px 5px;
  background-color: rgba(255,255,255,0.27);
  color: #eaf0fb;
  text-align: center;
}
.social div:hover{
  background-color: rgba(255,255,255,0.47);
}
.social .fb{
  margin-left: 25px;
}
.social i{
  margin-right: 4px;
}



/* ----------------------
 * -----15. RESPONSIVE------ 
 *--------------------- */
 
  /* Media query for mobile devices with a maximum width of 480px */
 @media only screen and (max-width: 480px) {
 
 .navbar-brand img{
        display: none;
    }


    form h1{
        font-size: 25px;
        line-height: 30px;
                                      
    }

    form h3{
        font-size: 20px;
        line-height: 20px;

    }
    
    .background .shape{
        display: none;
    }

     
 }
 
 
 @media screen and (max-width: 639px) {
    .navbar-brand img{
        display: none;
    }


    form h1{
        font-size: 25px;
        line-height: 30px;
                                      
    }

    form h3{
        font-size: 20px;
        line-height: 20px;

    }
    
    .background .shape{
        display: none;
    }

 
 }
 
 
 
 @media screen and (min-width: 768px) {
  .navbar-brand img{
        display: none;
    }

    form h1{
        font-size: 30px;
        line-height: 30px;
                                      
    }

    form h3{
        font-size: 20px;
        line-height: 20px;

    }
    
    .background .shape{
        display: none;
    }

     
 }
 
 @media only screen and (max-width: 992px) {
    .navbar-brand img{
        display: none;
    }

    form{
        top: 50%;
        width: 400px;
    }


    .login-side{
        margin:0;
    }

    #loading-icon {
        margin: -28px 30px -20px 25px ;
    }
     
 }
 
