.container
   {
	height: 80vh;;
    display: grid;
    place-items : center ;
	justify-content: center;
    align-items: center;
    font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   }
   .login-form
   {
    background-color:#fff7e0;
    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: #0a16f7;
    }
.form-content
{
margin-bottom: 15px;
}
.form-content label
{
display: block;
margin-bottom: 5px;
color: #333;
}
.form-content input , select
{
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
max-width: -webkit-fill-available;
}

.button
{
width: 100%;
padding: 10px;
border: none; 
border-radius: 4px; 
color: #fff; 
background-color:black;
font-size: 16px !important; 
cursor: pointer; 
transition:  0.3s;

}
.button:hover{
background-color: rgb(6, 6, 122);
}

.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%;
		}
}