/* login_header.css */

/* ===========================
   Header
   =========================== */
header {
    background-color: #f8f9fa;
    display: grid;
    grid-template-columns: 0.05fr 0.5fr 1fr 0.5fr 0.05fr;
    column-gap: 1vh;
    padding: 2vh 3rem;
    align-items: center;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
}

/* ===========================
   Logo e Links
   =========================== */
header img {
    height: 6vh;
}

header a {
    text-decoration: none;
    color: black;
    text-align: right;
}

/* ===========================
   Texto
   =========================== */
header p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.sislamir {
    font-size: 60px;
}

/* ===========================
   Responsividade
   =========================== */
/* Celular */
@media screen and (max-width: 767px) {
    header {
        font-size: 12px;
        padding: 2vh 1rem !important;
        column-gap: 0.5vh !important;
    }

    header img {
        height: 3vh !important;
    }

    header p {
        font-size: 5px !important;
    }

    header a {
        font-size: 5px !important;
    }

    .sislamir {
        font-size: 40px !important;
    }
}

/* iPad/Tablet */
@media screen and (min-width: 768px) and (max-width: 1200px) {
    header {
        column-gap: 0.5vh !important;
    }

    header img {
        height: 3vh !important;
    }

    header p {
        font-size: 6px !important;
    }

    header a {
        font-size: 6px !important;
    }

    .sislamir {
        font-size: 40px !important;
    }
}