@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    background-color: white;
}

/* CSS Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    background-color: white;
    padding: 10px 20px;
}

.navbar a {
    color: #02455c;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 18px;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.navbar a:hover {
    transform: scale(1.1);
    background-color: #02455c;
    color: #d0a933;
    border-radius: 5px;
}

.menu-right {
    display: flex;
}

.menu-right a {
    text-align: center;
    /* padding: 10px; */
    /* width: 100%; */
}

.menu-toggle {
    display: none;
    cursor: pointer;
    /* color: #3498db; */
    /* font-size: 24px; */
}

.navbar.active .menu-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.logo{
    width: 100px;
    height: 65px;
}

#logosite{
    margin-left: 3%;
    background-color: #ffffff;
    transform: scale(1);
}

#logosite:hover{
    transform: scale(1.1);
}
/* ---------- */

/* Emoji */
i {
    font-size: 30px;
    padding: 8px;
}

#certo{
    color: green;
}

#errado{
    color: rgb(182, 0, 0);
}

#seta{
    color: #02455c;
}

#navbar{
    color: #02455c;
}
/* ---------- */


.login-container {
    width: 300px;
    margin: 100px auto;
    padding: 20px;
    /* border: 1px solid #02455c; */
    border-radius: 10px;
    box-shadow: 4px 4px 8px #02455c;
    background-color: #02455c;
    text-align: center;
}

.login-container h2 {
    color: #d9d9d9;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: center;
}

.input-group label {
    text-align: left;
    display: block;
    margin-bottom: 5px;
    color: #d9d9d9;
}

.input-group input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #02455c;
    border-radius: 5px;
    font-size: 16px;
    background-color: #d9d9d9;
    color: #333;
}

.login-container button {
    width: 98%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #d0a933;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-container button:hover {
    background-color: #886809;
}

#message{
    margin-top: 3%;
    color: #d9d9d9;
}

.footer {
    background-color: #02455c;
    color: #617b8e;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 8%;
}

.footer .section {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer .section p {
    margin: 5px 0;
}

.footer .section.right {
    text-align: left;
}

.footer a {
    color: #d0a933;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
    }

    .navbar a {
        text-align: center;
        padding: 10px;
        width: 100%;
    }
    
    .menu-right {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu-toggle {
        right: 0;
        position: absolute;
        display: block;
    }

    .navbar.active .menu-right {
        display: flex;
    }

    #logo{
        width: 60%;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .section {
        text-align: center;
        padding: 10px 0;
    }

    .footer .section.right {
        text-align: center;
    }
}