body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background: center / cover no-repeat url("./pics/background.jpg");
}

.content {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}

.content form {
    display: flex;
    flex-direction: column;
    color: white;
    background-color: black;
    border: 1px solid white;
    border-radius: 15px;
    padding: 15px;
    width: 90%;
    font-size: 1em;
    text-transform: uppercase;
}

.content form label {
    margin-right: 15px;
}

.content form input {
    width: 75%;
    /* height: 50px; */
}

.content form button {
    width: 50%;
    /* font-size: 1em; */
}

@media (min-width: 768px) {
    .content form {
        flex-direction: row;
        width: auto;
    }
    .content form input {
        width: 200px;
        margin-right: 15px;
        /* height: 50px; */
    }

    .content form button {
        width: 75px;
    }
}