html,
body {
    height: 100%;
    margin: 0;
}

.error-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 68vh;
    width: 100%;
    gap: 15px;
    text-align: center;
}

.error-title {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 700;
    margin: 0;
}

.error-text {
    max-width: 870px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--botao-desativado);
    margin: 0;
}

.error-page-container .botao-padrao {
    margin-top: 15px;
}

.error-page-container a {
    text-decoration: none;
}

.botao-padrao {
    background-color: #0E0E0E;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    border-radius: 10px;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow-padrao);
    height: 46px;
    padding: 0px 42px;
    cursor: pointer;
}

.botao-padrao:hover {
    background-color: var(--cor-menu-selecionado);
}