h1 {
    display: block;
    text-align: center;
}

.vagas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.vaga__tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-color: #EFEFEF;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

.vaga__tab--active {
    background-color: #104ba0;
    color: white;
}

.vaga__tab--active h2 {
    color: white;
}

.vaga__tab button i {
    transition: transform 300ms ease-in-out;
}

.vaga__tab h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
    transition: color 300ms ease-in-out;
}

.vaga__tab__local {
    display: flex;
    flex-direction: column;
}

.vaga__tab__local span:nth-child(1) {
    font-size: 1.2rem;
    font-weight: 500;
}

.vaga__content {
    background-color: #EFEFEF;
    padding: 20px;
}

.vaga__content_container {
    max-height: 0;
    overflow: hidden;
}

.vaga__content__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vaga__content__button a {
    font-weight: 700;
    color: #104ba0;
}

.loggedin_bar {
    background-color: #EFEFEF;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    padding: 20px;
    gap: 10px;
}

.loggedin_bar a:first-of-type {
    margin-left: auto;
    
}

.loggedin_bar a {
    color: #104ba0;
    font-weight: 500;
}
