 .underline {
        width: 70%;
        /* Ajusta a largura conforme necessário */
        height: 3px;
        /* Espessura da linha */
        background-color: #ed028b;
        /* Cor da linha */
        margin: 20px auto;
        /* Espaçamento e centralização */
        border-radius: 2px;
        /* Borda arredondada para um visual suave */
    }

    body {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        margin: 0;
        padding: 0;
        color: #333;
        background-color: #f9f9f9;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

    .invite-section {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        position: relative;
        width: 100%;
        max-width: 700px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .invite-section p {
        font-size: 18px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 15px;
        text-align: center;
    }

    h1 {
        font-size: 36px;
        font-weight: 600;
        color: #222;
        margin-bottom: 15px;
        border-bottom: 2px solid #ed028b;
        display: inline-block;
        padding-bottom: 5px;
    }

    .cta-button {
        font-family: 'Montserrat', sans-serif;
        background-color: #ed028b;
        color: white;
        padding: 14px 28px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
        border: none;
        border-radius: 5px;
        box-shadow: inset 0 0 0 2px transparent;
        text-decoration: none;
        /* Remove o sublinhado */
        display: inline-block;
    }

    .cta-button:hover {
        background-color: white;
        box-shadow: inset 0 0 0 2px #ed028b;
        color: #ed028b;
    }



    ul {
        list-style-type: none;
        padding: 0;
    }

    ul li {
        font-size: 18px;
        padding: 8px;
        background: #f4f4f4;
        margin: 4px 0;
        border-radius: 3px;
    }

    ul li:hover {
        background: #ed028b;
        color: white;
        transform: scale(1.05);
        /* Aumenta ligeiramente o tamanho */
        transition: transform 0.2s ease-in-out;
    }

    .footer {
        width: 100%;
        background-color: #ffffff; /* Fundo branco */
        color: black; /* Texto preto */
        text-align: center;
        padding: 10px;
        border-top: 2px solid #20b0b0;
        position: relative;
        bottom: 0;
        left: 0;
        box-sizing: border-box; /* Garante que padding não cause expansão */
    }
    
    .footer-container {
        width: 100%; /* Garante que ocupa toda a largura */
        max-width: 1200px; /* Mantém limite para telas grandes */
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        width: 120px; /* Ajustável */
        margin-bottom: 10px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .footer {
            padding: 15px;
            width: 100%;
        }
    
        .footer-container {
            max-width: 100%; /* Evita que vá para a direita */
            padding: 0 10px; /* Adiciona um pequeno espaçamento interno */
        }
    
        .footer-text {
            font-size: 12px;
        }
    
        .footer-logo {
            width: 100px; /* Reduz o tamanho da logo em telas menores */
        }
    }


.inicial-logo {
    display: block; /* Garante que a imagem fique como um bloco */
    max-width: 100%; /* Garante que a imagem não ultrapasse o contêiner */
    height: auto; /* Mantém a proporção original */
    margin: 0 auto 10px auto; /* Centraliza corretamente */
}

    

    .left-align {
        justify-content:left;
        text-align: left;
        margin-left: 30px;
    }

    form {
        padding: 25px;
        border-radius: 8px;
        text-align: left;
    }

    .input {
        margin-bottom: 15px;
    }

    label {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    margin-bottom:30px;
}

.custom-checkbox input {
    display: none; /* Esconde a checkbox padrão */
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ed028b;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    transition: background 0.3s, border-color 0.3s;
}

.custom-checkbox input:checked + .checkmark {
    background: #ed028b;
    color:white;
}
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.custom-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

    input {
        width: 80%;
        padding: 12px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        transition: 0.3s;
    }

    input:focus {
        border-color: #ed028b;
        outline: none;
        box-shadow: 0 0 5px rgba(32, 176, 176, 0.5);
    }