Forgot Your Password
Forgot Your Password?
Please log in to continue
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
align-items: center;
justify-content: center;
}
.popup {
background:radial-gradient(ellipse at top,deeppink,black);
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
color:white;
font-family:"Century Gothic";
text-align:center;
}
.popup h2{padding-bottom:30px;font-size:30px;}
.popup a{
font-size:26px;
text-decoration:none;
color:white;
background:red;
transition:0.4s;
padding:10px;
border-radius:30px;
}
.popup a:hover{
background:navy;
}
.close-btn {
cursor: pointer;
position: absolute;
top: 42.5%;
right:40%;
font-size: 30px;
color: white;
}