body {
    background-color: #a2d5db;
}

#logo-navbar {
    width: 135px;
    height: 138px;
    transition: transform 0.3s ease;
    margin: -10px 0;
}

#logo-navbar:hover {
    transform: scale(1.2);
}

.custom-width-navbar {
    width: 100%;
}

.navbar-nav .nav-item {
    margin: 5px 13px;
}

.dropdown-menu {
    animation: slide-down 0.3s ease;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#bt-procurar {
    background-color: #8eef87;
    transition: transform 0.3s, box-shadow 0.3s;
}

#bt-procurar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 7px #000000;
}

#dropdown-menu {
    background-color: #fadfe39d;
}

.dropdown-item {
    background-color: #fadfe3;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.dropdown-item:hover {
    animation: background-color-animation 0.3s;
    animation-fill-mode: forwards;
}

@keyframes background-color-animation {
    0% {
        background-color: #fadfe3;
    }

    100% {
        background-color: #fadfe3;
    }
}

.nav-item a {
    display: inline-block;
    padding: 10px;
    border: 2px solid #f38dac;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-item a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 7px #000000;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

#textoeicon-dropdown {
    margin-left: 10px;
    margin-bottom: 3px;
}

#escritos-navbar {
    font-weight: bold;
    text-align: center;
}

#login-icon {
    margin-right: 15px;
    margin-left: 30px;
    height: 35px;
    width: 40px;
    transition: transform 0.3s ease;
    margin-bottom: 8px;
}

#login-icon:hover {
    transform: scale(1.2);
}

#search-bt-txt {
    color: #000000;
    font-weight: bold;
}

#logo-navbar {
    height: 123px;
    width: 120px;
    margin: -10px 0;
}

#icon-dropdown {
    height: 24px;
    width: 24px;
    margin-right: 3px;
}

#textoeicon-dropdown {
    margin-left: 10px;
    margin-bottom: 3px;
}

.dropdown-menu {
    width: fit-content;
    min-width: 100%;
}

.dropdown-item {
    width: 100%;
    white-space: nowrap;
}

#textos {
    margin-top: 140px;
}

#texto1 {
    border-radius: 10px;
    border: 3px solid black;
    padding: 20px;
    background-color: white;
    margin-right: 1.5px;
}

#texto2 {
    border-radius: 10px;
    border: 3px solid black;
    padding: 20px;
    background-color: white;
    margin-left: 1.5px;
}


::-webkit-scrollbar {
    width: 10px;
    margin-top: 120px;
}

::-webkit-scrollbar-track {
    background-color: #f4cdd3;
    border-radius: 40px;
}

::-webkit-scrollbar-thumb {
    background-color: #f38dac;
    border-radius: 40px;
}

#texto1-int {
    font-family: 'Roboto Slab', serif;
    font-size: large;
    text-align: justify;
}

#titulo-texto1 {
    font-family: 'Pangolin', cursive;
    margin-bottom: 20px;
    text-align: center;
}

#texto2-int {
    font-family: 'Roboto Slab', serif;
    font-size: large;
    text-align: justify;
}

#titulo-texto2 {
    font-family: 'Pangolin', cursive;
    margin-bottom: 20px;
    text-align: center;
}

.bg-color {
    background-color: #f4cdd3;
    margin-top: 30px;
}


.container {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-container {
    border: 4px solid #78c86f;
    padding: 10px;
    border-radius: 10px;
    max-width: 400px;

    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 1s, transform 1s;
}

.login-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-control {
    margin-bottom: 10px;
}

#form-login {
    width: 55%;
}

@keyframes animate-entry {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.login-container {
    opacity: 0;
    transform: scale(0.5);
    animation: animate-entry 1s forwards;
    background-color: #f4cdd3;
}

#botao-login {
    background-color: #78c86f;
    width: 100%;
}

#botao-login:hover {
    transform: scale(1.1);
    transition: transform 0.8s;
    box-shadow: 0 0 7px #000000;
}

#new-here {
    background-color: #53b049;
    margin-right: 5px;
}

#new-here:hover {
    transform: scale(1.1);
    transition: transform 0.8s;
    box-shadow: 0 0 7px #000000;
}

#forgot-pass {
    background-color: #53b049;
}

#forgot-pass:hover {
    transform: scale(1.1);
    transition: transform 0.8s;
    box-shadow: 0 0 7px #000000;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
}

#imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#imagem img {
    max-width: 100%;
    max-height: 100%;
}

.animate-fade-in {
    animation: fade-in 1s ease-in-out forwards;
    opacity: 0;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}