@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    position: relative;
}

img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: absolute;
    filter: blur(5px);
    z-index: -1;
}

main {
    position: relative;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 30px;
}

header {
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
}

.inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.input {
    margin: 15px;
    appearance: none;
    background: none;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    border: none;
    outline: none;
    transition: 0.4s;
    color: rgb(0, 0, 0);
    font-size: 20px;
}

label {
    color: white;
    font-weight: 800;
    font-size: 23px;
}
