:root {
    --main-color: #03588C;
    --secondary-color: #4B9EBF;
    --main-white: #f8f9fa;
    --unidombosco-azul: #102c69;
}

body,
html {
    height: fit-content;
    font-family: 'GothamHTF';
    /* font-family: "Comic Sans MS", "Comic Sans", cursive; */
}

nav {
    height: 5%;
}

.meuContainer {
    padding-top: 1%;
    height: calc(100vh - 70px);
}

.containerForm{
  background-color: var(--main-white);
  padding-top:2%;
  margin: auto;
  margin-top: 2%;
  width: 80%;
  height: max-content;
  border-radius: 25px;
  padding: 2%;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    width: 20%;
    height: 100%;
    z-index:1;
    background-color: var(--main-white);
    border-radius: 0 0 25px 0;

    transition: all .2s ease-in-out;
}

.nav-logo:hover{
    transform: scale(1.1);
}

@media all and (min-width:0) and (max-width: 1024px) {
    /* put your css styles in here */
    .nav-logo{
        position:relative;
    }
  }

.nav-logo img {
    width: 80%;
    height: 50%;
}

.nav-link {
    color: var(--main-color) !important;
    font-weight: bold;
    transition: all .2s ease-in-out;
}

.nav-link:hover{
    color: var(--secondary-color) !important;
    transform: scale(1.1);
}

.dropdown-menu, .dropdown-menu a {
    color: var(--main-color);
}

.divisor {
    height: 20px;
    border-right: 1px solid var(--main-color);
    align-self: center;
}

@media (max-width: 1020px) {
    .divisor {
        display: none;
    }
    .nav-logo {
        width: 250px;
    }

    .nav-logo img {
        width: 200px;
    }
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    /* min-width: 100%; */
    min-height: 100%;
    z-index: -10;
    display: block;
    width: 100%;
    /* opacity: 0.5; */

}

.navbar {
    box-shadow: 0px 0px 5px black;
}

.logo-aedb {
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: var(--main-white);
    border-radius: 40px 0 0 0;
    padding: 1em;
    z-index: 5;
}
.logo-aedb img {
    width: 400px;
    height: 50px;
}

.btnlink{
    border:none;
    background-color:transparent;
    outline:none;
}

.titulo {
    text-align: center;
    font-size: 24px;
    margin-bottom: 1em;
    color:var(--main-color);
    font-weight: bold;
}
