@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    background-image: url("../img/background.jpg");
    color: #000;
    position: relative;
}

html::before, body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, black 90%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

header {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    height: calc(100vh - 40vh);
    color: #fff;
}

.form-container form {
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #5A3911;
}

.form-container h2 {
    text-align: center;
    font-size: 2em;
    padding-bottom: 0.75em;
}

#app-title {
    font-family: "Baloo 2", cursive;
    font-size: 3em;
}

button {
    background-color: #8B4513;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 0.5em;
    cursor: pointer;
    font-size: 1em;
}

input {
    padding: 0.5em;
    border-radius: 0.5em;
    border: 1px solid #ccc;
    margin-bottom: 1em;
    width: 93.5%;
    background-color: #C0A080;
}

label {
    display: block;
    margin-bottom: 0.5em;
}