.Home {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.Logo {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 12px;
}

.LogoImg {
    width: 440px;
    height: auto;
}

.form-container {
    display: flex;
    width: 100%;
    height: 60%;
    flex-direction: column;
    gap: 20px;
    overflow: auto;
}

form {
    background: #008CC35C;
    display: block;
    padding: 20px;
    width: 280px;
    border-radius: 5px;
    margin: 40px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.Tile {
    text-align: center;
    color: white;
    font-family: Play, sans-serif;
}

input {
    display: block;
    width: 260px;
    padding: 10px;
    margin: auto;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #003462;
    text-align: center;
    font-family: K2D, sans-serif;
}

button {
    padding: 6px 16px;
    background-color: #00A394;
    color: white;
    border: none;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
    cursor: pointer;
    font-family: K2D, sans-serif;
}

    button:hover {
        background-color: #027689;
        transform: scale(0.9);
    }

.Footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
    color: white;
    font-size: 14px;
    font-family: Jura, sans-serif;
}

#successMessage {
    text-align: center;
    color: #0084A3;
}

#errorMessage {
    text-align: center;
    color: #FB008D;
}

#signUpForm {
    display: none;
}

#signUpSuccessMessage {
    text-align: center;
    color: #0084A3;
}

#signUpErrorMessage {
    text-align: center;
    color: #FB008D;
}

@media screen and (max-width: 1006px) {
    .LogoImg {
        width: 260px;
        height: auto;
    }

    .Footer {
        font-size: 6px;
    }
}
