html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #F0EFEB;
    background-image: url(../img/bgCupom.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    display: flex;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

.limite-1440 {
    gap: 30px;
    padding: 20px;
    display: flex;
    margin: 85px auto 0 auto;
    max-width: 1440px;
    position: relative;
    border-radius: 20px;
    flex-direction: column;
    width: calc(100% - 10px);
    align-items: flex-start;
    backdrop-filter: blur(8px);
    background-color: #F0EFEABD;
    /* min-height: calc(100vh - 50px); */
}

.texto-final {
    height: 60px;
    font-size: 16px;
    font-weight: 500;
    color: #142A30;
    text-align: center;
}

@keyframes bounceVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.div-content-separete {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div-content {
    width: 100%;
    display: flex;
    max-width: 700px;
    padding-bottom: 25px;
    flex-direction: column;
}

.titulo-cadastro {
    color: #142A30;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.linha-dupla {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-bottom: 25px;
    align-items: flex-end;
}

.linha-unica {
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

.campo {
    width: 100%;
}

.campo-textarea {
    display: flex;
    flex-direction: column;
}

.label-branca {
    color: #142A30;
    font-size: 14px;
}

.sinal-obrigatorio {
    color: #FFB74D;
}

.meu-input {
    height: 50px;
    padding-left: 20px;
    border-radius: 40px;
    border: 2px solid #142A3099;
    background-color: #FEFDF9;
}

.meu-input::placeholder {
    opacity: 1;
    font-size: 14px;
    font-weight: bold;
    color: #142A3066;
}

.meu-input-textarea {
    width: 100%;
    min-height: 100px;
    padding-left: 20px;
    border-radius: 20px;
    border: 2px solid #142A3099;
    background-color: #FEFDF9;
}

.meu-input-textarea::placeholder {
    opacity: 1;
    font-size: 14px;
    font-weight: bold;
    color: #142A3066;
}

.button-custom {
    width: 100%;
    height: 50px;
    font-size: 20px;
    margin-top: 15px;
    color: #FEFDF9;
    font-weight: bold;
    border-radius: 25px;
    background-color: #A0A9A8;
    border: 1px solid #A0A9A8;
    transition: background-color 0.2s ease;
}

.button-custom:hover {
    background-color: #A0A9A8;
    border: 1px solid #A0A9A8;
}

.button-custom:active {
    background-color: #9DE200;
    border: 1px solid #A0A9A8;
    color: #17333A;
}

@media (max-width: 720px) {
    .linha-dupla {
        padding-bottom: 15px;
        flex-direction: column;
    }

    .button-custom {
        margin-top: 25px;
    }

    .iconXuxu {
        top: 25px;
        left: 20px;
    }
}