.container
   {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: math;
   }
   .login-form
   {
    background-color:#ffffff;
	/* background-color: transparent; */
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(1, 1, 1, 0.2);
    padding: 40px;
    padding-top: 10px !important;
    width: 320px;
    justify-content: center;

   }
   .heading 
   {
        text-align: center ;
        margin-bottom: 15px;
        font-size: 23px;
        color: black;
    }
.form-content
{
margin-bottom: 15px;
}
.form-content label
{
display: block;
margin-bottom: 5px;
color: #fff;
}
.form-content input , select
{
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
max-width: -webkit-fill-available;
}

.button {
    width: 100%; /* Full width */
    padding: 10px; /* Padding around the text */
    border: none; /* No border */
   
    color: #fff; /* Text color */
    font-size: 16px !important; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
	
	background-image: url('https://t4.ftcdn.net/jpg/04/38/55/69/360_F_438556946_UKupZvZrCzbfIxawj8P57hoDSl7ypza9.jpg');
	 /* Background image */
    background-size: cover; /* Cover the entire button */
    background-position: center; /* Center the image */
    transition: opacity 0.3s; /* Smooth transition for hover effect */
}
/* .button:hover{
background-color:#f1f1f157;
} */

.password-container {
position: relative;
display: flex;
align-items: center;
}
.password-container input {
width: 100%;
padding-right: 40px; /* Adjust padding to make room for the icon */
}
.password-container .toggle-password {
position: absolute;
right: 10px;
cursor: pointer;
}
.success{
width: 100px;
 height: 100px;
object-fit: contain;
border-radius : 50%;
mix-blend-mode: darken;
}
.success_div{
display : none ;
align-items : center ;
justify-content: center;
height: 24px;
padding-top: 10px
}

.fa-eye-slash{
display : none;
}

span.loginwith{ 
	display: block;
	width: 100%;
	margin-top: 2em;
	white-space: nowrap;
    color: #333;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items:center;
		&::before{
			content:"";
			display: inline-block;
			width: 42%; 
			height:1px;
			background: #aaa;
			vertical-align: middle;
			margin-right: 5%;
			
		}
		&::after{
			content:"";
			display: inline-block;
			width: 45%; 
			height: 1px;
			background: #aaa;
			vertical-align: middle;
			margin-left: 5%;
		}
}