html, body {
    height: 100%;
}

body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    width: 100%;
    min-height: 100%;
    background-image: url("background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}

section {
    border-radius: 15px;
    padding: 3em;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 2em;
}

#logo {
    height: 8em;
    padding-bottom: 0.5em;
}

.form-input {
    padding: 0.5em;
}

p {
    color: white;
}

