
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-image: url(./image.png);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}
.box
{
    width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative;
    margin: 0 auto;
    top: 60px;
    border-radius: 40px;
    border: 2px solid #FFFFFF;
    backdrop-filter: blur(10px);

}
h3{
    color: #FFFFFF;
    position: absolute;
    top: 40px;
    font-size: 30px;
    font-family: poppins;
}
input::placeholder
{
    color: #FFFFFF;
}
#user_input
{
    width: 400px;
    height: 50px;
    border-radius: 20px;
    border: none;
    padding-left: 20px;
    font-size: 18px;
    font-family: poppins;
    position: absolute;
    top: 100px;
    border: 3px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;

}
button
{
    width: 400px;
    height: 50px;
    border-radius: 20px;
    border: none;
    padding-left: 20px;
    font-size: 18px;
    font-family: poppins;
    position: absolute;
    top: 180px;
    /* color: #FFFFFF; */
    border: 1px solid #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease; 

}
button:hover {
    background-color: rgba(255, 255, 255, 0.2); 
    color: #FFFFFF; 
}
#email_label
{
    position: absolute;
    top: 80px;
    left: 60px;
    font-size: 13px;
    color: red; 
    font-family: poppins;
    text-align: left;
    width: 400px; 
}
.Remember3
{
    position: absolute;
    top: 250px;
    left: 170px;
    font-size: 13px;
    color: #FFFFFF;
    font-family: poppins;
}
.login
{
    color: #FFFFFF;
    text-decoration: none;
    font-family: poppins;
}
.login:hover
{
    text-decoration: underline;
}