body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
    background-image: url('./asstes/BR08.png');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}



.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin-top: 12%;
}

.date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"] {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
    color: #aaa;
}

.checkbox {
    margin-bottom: 20px;
    text-align: left;
}

.checkbox label {
    font-size: 0.8em;
    color: #555;
}

#understoodBtn, button {
    padding: 10px;
    background-color: #ff7f7f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

#understoodBtn:hover, button {
    background-color: #ff4f4f;
}

.footer {
    font-size: 0.8em;
    color: #888;
    margin-top: 20px;
}

.footer .heart {
    color: #ff7f7f;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(39, 39, 39); /* Cor do texto */
    text-align: center;
    padding: 20px;
    background-color: rgba(240, 243, 200, 0.459); /* Fundo semitransparente */
    width: 100%;
    height: 100%;
    
}

/* Modal */
.modal {
    display: none; /* Oculta o modal por padrão */
    position: fixed; /* Fica fixo na tela */
    z-index: 1; /* Fica acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%; /* Largura total */
    height: 100%; /* Altura total */
    overflow: auto; /* Adiciona rolagem se necessário */
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro com opacidade */
}
.modal-content {
    background-color: #fff;
    margin: 15% auto; /* Margem no topo e centralização */
    padding: 20px;
    border: 1px solid #888;
    width: 22rem;
    border-radius: 8px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}