body{
    margin:0;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;

    background-image: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url("body.avif");

    background-size:cover;
    background-position:center;
    font-family:Arial, sans-serif;
}

form{
    width:350px;
    padding:30px;
    border-radius:12px;

    background:rgba(255,255,255,0.1);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    0 0 20px rgba(160,120,255,0.3);

    color:white;
}

h2{
    text-align:center;
    margin-bottom:20px;
}

.input_box{
    position:relative;
    margin-bottom:20px;
}

.input_box i{
    position:absolute;
    top:50%;
    left:10px;
}

.input_box input{
    width:300px;
    padding:10px 10px 10px 35px;
    border:none;
    border-radius:5px;
    outline:none;
}

.remember_forgot{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    margin-bottom:20px;
}

.remember_forgot a{
    color:white;
    text-decoration:none;
}

.button{
    width:100%;
    padding:10px;
    border:none;
    border-radius:6px;
    background:#000fe7;
    color:rgb(255, 255, 255);
    font-size:16px;
    cursor:pointer;
}

.registerlink{
    text-align:center;
    margin-top:15px;
}

.registerlink a{
    color:#fff;
    font-weight:bold;
}
.icon{
   display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 15px;
    font-size: 30px;
}