.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Isso garante que o topo fique no topo e o rodapé fique embaixo */
}


.btn-custom-blue {
    background-color: #115395; /* Azul padrão bonito */
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-custom-blue:hover {
    background-color: #1875d2; /* Tom mais escuro no hover */
    color: white;
}

.box_id_session_created {
    width: 50%;
    height: 30vh;
    margin: 40px auto;
    background-color: #d1e7dd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
