*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(./1024px-Nature-View.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
}
form{
    padding: 1rem;
    background-color: white;
    width: 30%;
    border-radius: 10px;
    display: flex;
    gap: 2rem;
    align-items: center;
}
input{
    width: 100%;
}

svg{
    width: 30px;
    height: 30px;
    
}