@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

.fontRoboto {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
}

.signUpButton {
    background-color: #1a73e8 !important;
    color: white !important;
    border-radius: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signUpButton:hover {
    background-color: #1552a3 !important;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
}

.signUpHeaderButton {
    color: #1a73e8;
    background-color: white;
    border-radius: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signUpHeaderButton:hover {
    background-color: #e7efff;
    color: #1a73e8 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

a:hover {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blackColor {
    color: white;
}

.navbarBackground {
    background-color: #1a73e8;
    transition: all 0.3s ease;
}

.navbarBackground.scrolled {
    background-color: #1552a3;
    box-shadow: 2px 13px 20px rgba(0, 0, 0, 0.2);
}

.navbarButtons {
    transition: all 0.3s ease;
    position: relative;
}

.navbarButtons:hover {
    color: #4797ff !important;
}

.navbarButtons::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4797ff;
    transition: width 0.3s ease;
}

.navbarButtons:hover::after {
    width: 100%;
}

.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .dropdown-toggle:after {
    color: white !important;
}

.useImage {
    margin-top: 90px;
}

#profileDropdown.dropdown-toggle:after {
    color: white !important;
} 

@media (max-width: 1200px) and (min-width: 1090px) {
    .responsiveNavbar {
        max-width: 1050px !important;
    }
}

@media (max-width: 1200px) {
    .useCard {
        display: flex !important;
        align-items: center !important;
        gap: 0.3rem;
    }
    .useImage {
        rotate: 90deg;
    }
}
