@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: 'Poppins', sans-serif;
}
body{
    background-image:  url("backgroundlogin.png");
    background-repeat: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height:110vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    
}




form{

    background-color: rgba(255,255,255,0.13);
width:30%;
    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: 20px 25px;
}
form *{
    font-family: 'Poppins',sans-serif;
    color: #495057;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    color:#222222;
}

label{
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    color:#222222;

}

input[type=email] , input[type=password] {
    -webkit-appearance: none;
    display: block;
    height: 60px;
    width: 100%;
    background-color: rgba(140, 200, 240, 0.07);
    border-radius: 30px;
    padding: 0 20px;
    margin-top: 8px;
    font-size: 16px;
    color:black;
    font-weight: 300;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

    
    
}




input:focus { 
    color:white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
 }
::placeholder{
    color: #222222;
}
button{
    margin: 10px 0;
    width: 100%;
    background-color: rgba(17, 44, 90);
    color: #ffffff;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition:all ease 0.3s;
    
}
button:hover{

    background-color: rgba(255, 255, 255, 0.75);
    color:black;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.buttongroup{
    margin-top:20px;
}

.checkboxdiv{
    display:flex;
    align-items:center;
    color:black;
    margin-top:-9px;
    
}
strong{
    font-size:14px;
    color:red;
}
p{
    color:black;
    margin-top:10px;
    margin-left:10px;
    font-size:14px;

}
.signinstyle{
	text-decoration: none;
	   color: #ffffff;
}
.signinstyle:hover{
    color:black;
	
}

.signupstyle{
	text-decoration: none;
	   color: #ffffff;
}
.signupstyle:hover{
    color:black;

}



@media only screen and (max-width: 1200px) {
 
 form{
     width:90%;
 }
}


/ ----------------------------password--------------------------- /
.wrapper{
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	width: 300px;
}
/* input{
	box-sizing: border-box;
	width: 100%;
	font-size: 18px;
	border: none;
	padding: 10px 10px;
	border-radius: 3px;
	font-family: 'Poppins',sans-serif;
	color: #4a4a4a;
	letter-spacing: 0.5px;
	box-shadow: 0 5px 30px rgba(22,89,233,0.4);
} */
::placeholder{
	color: #3f3f3f;
	font-weight: 400;
}
.passgroup{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 20px;
    flex-wrap:Wrap;
}
.eye{
	position: absolute;
	right: 15px;
    transform: translate(-10%,190%);
	top: 0%;
   
	cursor: pointer;
}
.fa{
	font-size: 20px;
	color: #111;
}