@media(max-width:640px) {
    .hero .btns {
        display: flex;
        gap: 0.7rem;
    }

    .hero .btn {
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 550px) {
    #toggleMusic {
        right: 10px;
        bottom: 15px;
        background: black;
        color: #fff;
        outline: none;
        font-size: 0.7rem;
        border: 2px solid var(--white);
        padding: 2.5px 3.5px;
        border-radius: 50% / 10%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #toggleMusic i {
        background: none;
        color: #fff;
    }

    #toggleMusic:hover {
        background: #fff;
        color: #000;
        transform: scale(1.1);
    }

    #toggleMusic:hover i {
        color: #000;
    }

    header {
        height: 50px;
    }

    header ul {
        display: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        /* justify-content: center; */
        gap: 1.5rem !important;
        position: absolute;
        min-height: fit-content;
        top: 46px;
        right: 0;
        left: 0;
        width: 100%;
        padding: 0.5rem min(3%, 22px);
        border-top: 2px solid white;
        border-bottom: 2px solid white;
        border-radius: 100% / 9%;
        background-color: black;
        /* backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); */
        z-index: 9999;
        transition: all 0.3s;
    }

    header ul li a {
        margin: 0 0;
        border-bottom: 2px solid transparent;
    }

    .navbar-toggle {
        display: flex;
        z-index: 999;
    }

    header ul.active {
        display: flex;
    }

    .login-container {
        min-height: calc(100vh - 50px);
        min-height: calc(100dvh - 50px);
    }

    .login-container div {
        max-width: 330px;
    }

    footer {
        height: 50px;
    }
}

@media (max-width:400px) {
    header ul {
        flex-direction: column;
        align-items: center;
        border-radius: 100% / 2%;
    }

    .hero .btns {
        flex-direction: column;
    }

    .hero p {
        margin-bottom: 2rem;
    }
}