body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

h1 {
    text-align: center;
    color: #8BBDFF;
}

p {
    text-align: center;
    color: #bbb;
}

a {
    color: teal;
    text-decoration: none; 
}

a:visited {
    color: teal;
}

canvas {
    position: absolute;
    padding-left: 0;
    padding-right: 0;
    display: block;
}

#cutscene {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; /* Ensure it's above the canvas */
    display: none;
    /*width: 100%;*/
}


/* Popup */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #222;
    padding: 20px;
    border-radius: 5px;
    margin: auto;
    font-size: 3em;
}

.form-field {
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: calc(100% - 20px);
    font-size: 1em;
    color: gray;
}

.btn {
    background-color: #4CAF50;
    color: black;
    padding: 15px 20px;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
    font-size: 1em;
}

.btn:hover {
    opacity: 1;
}

#lead-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    transform-origin: center center;
    width: 100%;
    max-width: 400px;
    max-height: 630px;
    padding: 20px;
    border-radius: 10px;
    background-color: #1a1a2e;
    color: #e7e7de;
    position: absolute;
    margin: auto;
    z-index: 1000;
}

#form-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.form-field {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: #2c2c54; /* Azul escuro/roxo para fundo dos campos */
    color: #c7c7ff; /* Cor clara para o texto dos campos */
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #ff8c00; /* Laranja brilhante para o botão */
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ffaa00; /* Um laranja mais claro para o efeito hover */
}

label {
    display: block;
    margin-bottom: -5px;
    color: #ccd1ff;
}

#intro-text {
    font-family: 'Arial', sans-serif; /* Fonte legível */
    text-align: center; /* Centralizar texto */
    line-height: 1.5; /* Espaçamento entre linhas para melhor leitura */
}

#intro-text strong {
    color: #f5a142; /* Cor destacada para ênfase */
}
/* Estilo para placeholders */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d0d0fa; /* Cor mais clara para o placeholder */
    opacity: 1; /* Placeholder não deve ser semi-transparente */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d0d0fa;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #d0d0fa;
}

input {
    color-scheme: dark;
}


input[type="date"]::-webkit-datetime-edit-fields-wrapper { /* Corrigindo a cor dos divisores no seletor de datas */
    color: #c7c7ff;
}

input[type="date"]::-webkit-datetime-edit-text { /* Corrigindo a cor do texto 'de' no seletor de datas */
    color: #c7c7ff;
}

input[type="date"]::-webkit-datetime-edit-month-field { /* Corrigindo a cor do mês no seletor de datas */
    color: #c7c7ff;
}

input[type="date"]::-webkit-datetime-edit-day-field { /* Corrigindo a cor do dia no seletor de datas */
    color: #c7c7ff;
}

input[type="date"]::-webkit-datetime-edit-year-field { /* Corrigindo a cor do ano no seletor de datas */
    color: #c7c7ff;
}

.required {
    color: #ff0000; /* Cor vermelha para o asterisco */
}

label[for='phone'] {
    margin-bottom: 5px;
}

label[for='birthdate'] {
    margin-top: 10px;
}