@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Zen Dots", serif;
}

body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #030000;
}

.hero {
    background-image: url('../images/olympia.png');
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    position: relative;
}

.logo {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 400px;
}

/* Formulário com design clean e moderno */
.form-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #111111ea;
    backdrop-filter: blur(2px);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 50px 26px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 80%;
    max-width: 500px;
    color: white;
}

.form-container h2 {
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    color: #fff;
}

.form-container input {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    border: 2px solid #a53333;
    border-radius: 8px;
    background-color: #242424da;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.form-container input:focus {
    outline: none;
    border-color: #c53434;
    background-color: #444;
}

.form-container button {
    width: 100%;
    padding: 1rem;
    background-color: #c53434;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.form-container button:hover {
    background-color: #8f0d0d;
}

.video-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 90%;
    height: 70%;
    max-width: 800px;
    max-height: 420px;
    z-index: 20;
}

.overlay {
    background: #00000069;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

hr {
    margin: 25px 0;
    opacity: 15%;
}

.max-logo {
    width: 200px;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-container {
        width: 90%;
        padding: 1.5rem;
        top: 55%;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-container input,
    .form-container button {
        font-size: 1rem;
    }

    .hero {
        background-position-x: calc(-450px);
    }

    .video-container iframe {
        height: 35%;
    }

    .max-logo {
        width: 150px;
        margin-top: 20px;
    }

    .form-container p {
        font-size: 0.8rem;
    }
}