
* {
    font-family: montserrat;
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 30px;
}

.nav-2-alter {
    display: none;
    width: 100%;
    height: auto;
    background-color: #37517E;
}

.nav-container {
    height: 80px;
    background-color: #37517E;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.nav-container .nav-2 {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.nav a {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

.nav a:hover {
    color: #fff;
}

.nav a img {
    border-radius: 50%;
    height: 40px;
}

a.active {
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
    background-color: #47B2E4;
    border-radius: 20px;
    font-weight: 500;
}





@media (max-width: 1024px) {
    .nav-container .nav-2 {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-2-alter .nav-btn-2 {
        font-size: 25px;
    }

    .nav-2-alter.show {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding: 20px 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

@media (max-width: 480px) {
    .aside-thumbnail {
        width: 270px;
    }

    .btn-group {
        margin-left: 25px;
    }
}

.form-container {
    /* background-color: #e3e3e3; */
    border-radius: 10px;
    padding: 20px;
    margin-top: 50px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    text-align: center;
    color: #002752;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-container label {
    font-weight: 500;
}

.form-container .form-group input {
    border-radius: 5px;
}

.form-container button {
    background-color: #47B2E4;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
}

.form-container button:hover {
    background-color: #338;
    color: aliceblue;
}
