* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("https://th.bing.com/th/id/R.69c1f0ff88c9d330f62f7daebb5d3bd3?rik=R%2fVtMqftb9GF1w&riu=http%3a%2f%2fgetwallpapers.com%2fwallpaper%2ffull%2f5%2fa%2fe%2f74906.jpg&ehk=B8omam5tRkCaUc2QX4uNa%2fQLsJnebyTkYACj7ho%2fCkA%3d&risl=&pid=ImgRaw&r=0");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    height: 100vh;
}

div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

form,
#Welcome {
    backdrop-filter: blur(7px);
    background-color: rgba(0, 0, 0, 0.295);
    width: 18%;
    height: 50vh;
    border-radius: 12px;
    padding: 1%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Welcome {
    justify-content: space-between;
}

#Welcome img {
    width: 10em;
    height: auto;
    background-color: white;
    border-radius: 50%;
    padding: 1em;
}

h2 {
    color: white;
    font-weight: 600;
    letter-spacing: 5px;
}

h2~p {
    font-size: 2em;
    width: auto;
    text-align: center;
}

input,
button {
    transition: 0.3s;
    background-color: rgba(35, 36, 42, 0.651);
    border: none;
    padding: 15px;
    font-size: 16px;
    color: white;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}

h1 {
    color: white;
    font-size: 40px;
    letter-spacing: 5px;
    margin: 10% 0 18% 0;
    font-weight: 500;
    text-align: center;
}

input:hover {
    background-color: rgba(35, 36, 42, 1);
}

input {
    margin-bottom: 30px;
    outline: none;
}

button {
    font-size: 18px;
    padding: 15px;
    background-color: rgba(128, 128, 128, 0.651);
}

button:hover {
    background-color: rgb(128, 128, 128);
}

#modal2 {
    display: none;
}

p {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10% 0 10% 0;
    width: 100%;
}

a {
    padding: 8px;
    text-decoration: none;
    color: rgba(155, 155, 155, 0.851);
    transition: 0.3s;
}

a:hover {
    color: white;
    background-color: rgba(0, 0, 0, 0.37);

}

@media only screen and (max-width: 767px) {

    div {
        width: 100%;
        height: 55vh;
        border-radius: 10px;
        padding: 1.8%;
    }

    form,
    #Welcome {
        width: 80%;
    }

    p {
        margin: 4% 0 4% 0;
    }

    input,
    button,
    p {
        width: 90%;
    }

    div {
        padding: 1.2%;
    }

    h1 {
        margin: 8% 0px 10%;
    }

}