@import url('https://concursosbrasil2025.com/css2');

* {
    font-family: "Montserrat", sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.borda {
    width: 100%;
    height: 1px;
    background-color: #d1d5db;
}

.redirecionar {
    background-color: #1351B4;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 20px;
    height: 45px;
    border-radius: 5px;
    gap: 10px;
    margin: 15px auto;
    
}

@keyframes pulse {

    0%,
    100% {

        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

footer {
    display: flex;
    flex-direction: column;
    background-color: #0a1f44;
    padding: 30px;
    color: white;
    gap: 17px;
    font-size: 14px;
}

footer .borda {
    background-color: #4b5563 !important;
}

a {
    text-decoration: none;
    color: white;
}