.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: auto;
}

.container-filho {
    width: 100%;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.title-item {
    background-color: black;
    height: min-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 7px;
    color: white;
    font-weight: 800;
}

.title-item-ad {
    background-color: #f7f7f7;
    height: min-content;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 0px;
}

body {
    background-color: #445EDD;
}



@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contêiner principal da página */
.page-container {
    background-color: #445EDD;
    width: 100vw;
    height: 100vh;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Envolve o conteúdo para centralizar e ajustar o layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 80%;
    /* Ajuste conforme necessário */
    max-width: 900px;
}

.titles {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.main-title {
    color: #879BFF;
    font-size: 24px;
}

.sub-title {
    color: #879BFF;
    font-size: 20px;
}

/* Contêiner de grade para organizar os itens em duas colunas */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Define duas colunas de tamanhos iguais */
    gap: 10px;
    /* Espaço entre os itens */
    width: 100%;
    /* Ajuste a largura para caber no contêiner */
}

/* Cada item individual da grade */
.grid-item {
    display: flex;
    flex-direction: column;
}

.grid-item label {
    color: #344AB7;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px;
}

.form-control {
    background-color: #344AB7;
    outline: none;
    border: none;
    padding: 0 10px;
    font-size: 16px;
    width: 100%;
    height: 50px;
    color: #ffffff !important;
}

.form-control:focus {
    background-color: #344AB7;
}

.form-title {
    font-weight: 800;
    color: #344AB7;
}

.form-label {
    font-weight: 700;
    color: #344AB7;
}

/* Estilo dos campos de entrada */
.input-field {
    width: 100%;
    height: 50px;
    /* Altura dos inputs */
    background-color: #344AB7;
    /* Fundo azul dos campos */
    color: #FFFFFF;
    /* Texto branco */
    border: none;
    /* Remove borda padrão */
    border-radius: 8px;
    /* Bordas arredondadas */
    padding: 0 10px;
    /* Espaçamento interno dos lados */
    font-size: 16px;
    /* Tamanho do texto */
    cursor: not-allowed;
    /* Indica que é somente leitura */
}

.input-field:focus:active {
    outline: none;
    /* Remove a borda de foco padrão */
}

.btn-primary {
    background-color: #FFA500;
    /* Laranja */
    color: white;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #ff8c00 !important;
}

/* Botão de chamada para ação */
.cta-button {
    background-color: #FFA500;
    /* Laranja */
    color: white;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ff8c00;
    /* Tom mais escuro no hover */
}

.caixa {
    margin-top: 175px;
}