* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url(Assets/anime\ collage\ luffy.jpg);
}

header {
    align-items: center;
    background-color: rgba(146, 219, 232, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100vw;
    z-index: 999;
}

nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 12px 30px;
    width: 100%;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    border-radius: 12px;
    color: #000;
    padding: 7px;
    text-decoration: none;
    transition: .4s;
}

nav ul li a:hover {
    font-size: .9em;
    padding: 9.4px;
    box-shadow: 12px 8px 18px -8px rgba(0, 0, 0, 0.75) inset;
    -webkit-box-shadow: 12px 8px 18px -8px rgba(0, 0, 0, 0.75) inset;
    -moz-box-shadow: 12px 8px 18px -8px rgba(0, 0, 0, 0.75) inset;
}

.logo {
    height: 50px;
}

/* untuk ukuran 600px */
.nav-box {
    align-items: center;
    border-radius: 7px;
    display: none;
    justify-content: center;
    height: 35px;
    width: 35px;
    transition: transform 0.3 ease;
}

.nav-box.transform {
    transform: rotate(90deg);
}

#nav-strip1,
#nav-strip2,
#nav-strip3 {
    background: #ffff;
    border-radius: 2px;
    margin: 2px;
    height: 4px;
    width: 24px;
}

.dropleft {
    margin-right: 70px;
    right: 0;
    display: flex;
    gap: 15px;
    background: #ffff;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropleft a {
    color: #97d5e0;
    text-decoration: none;
}

.dropleft.show {
    opacity: 1;
    transform: scaleX(1);
}

/* untuk ukuran 600px */

/* Section Content */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.containerText {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 34px;
}

.containerText h1 {
    font-family: 'Goldman';
    font-size: 2.4em;
}

.container {
    align-items: center;
    display: flex;
    width: 100vw;
    padding: 5vh 0;
    margin-top: 30px;
    gap: 12px;
    overflow-x: auto;

    scroll-snap-type: x mandatory;
}

.container::-webkit-scrollbar {
    display: none;
}

.box-content {
    background: aliceblue;
    box-shadow: 12px 13px 18px -8px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 12px 13px 18px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 12px 13px 18px -8px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    height: 300px;
    width: 300px;
    transition: all 0.3s ease;

    scroll-snap-align: center;
}

.box-content.active {
    background-image: url(Assets/LogoGhaos-ContourBlack.png);
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: center;
    background-blend-mode: soft-light;
    box-shadow: 1px 1px 20px 2px rgba(255, 0, 0, 0.75);
    -webkit-box-shadow: 1px 1px 20px 2px rgba(255, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 20px 2px rgba(255, 0, 0, 0.75);
    color: red;
    font-size: 2em;
    transform: scale(1.1);
}

.btn {
    background-color: #0077b8;
    border-radius: 8px;
    display: none;
    color: #ffffff;
    padding: 7px 12px;
    text-decoration: none;
}

.btn.show {
    display: flex;
    margin-top: 30px;
}

/* Content End */

/* Section LoginAs */
.loginAs {
    align-items: center;
    background: rgba(146, 219, 232, 1);
    box-shadow: -2px -27px 58px 0px rgba(0, 0, 0, 0.76);
    -webkit-box-shadow: -2px -27px 58px 0px rgba(0, 0, 0, 0.76);
    -moz-box-shadow: -2px -27px 58px 0px rgba(0, 0, 0, 0.76);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    width: 100vw;
}

.loginAs h1 {
    font-family: 'Goldman';
    font-size: 2em;
    text-align: center;
}

.containerLogin {
    display: flex;
    justify-content: center;
    gap: 50px;
    height: 60%;
    margin-top: 16px;
    width: 100vw;
}

.containerForm {
    background-color: #ffffff;
    box-shadow: 12px 13px 18px -8px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 12px 13px 18px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 12px 13px 18px -8px rgba(0, 0, 0, 0.75);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 27vw;
}

.form {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: center;
    width: 80%;
}

.form h3 {
    font-family: 'Goldman';
    margin-bottom: 12px;
    text-align: center;
    width: 85%;
}

.form p {
    text-align: center;
}

.form .submit,
.form p {
    margin-top: 8px;
}

.form span {
    color: red;
}

.form input {
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px;
    margin: 3px 0;
    width: 86%;
}

.line {
    display: flex;
    background-color: #000;
    border-radius: 12px;
    height: 100%;
    width: 10px;
}

.submit {
    background-color: #0077b8;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #ffffff;
    padding: 8px 12px;
}

/* LoginAs End */
@media screen and (max-width: 850px) {
    .loginAs {
        height: 100vh;
    }

    .containerLogin {
        align-items: center;
        flex-direction: column;
        gap: 20px;
        height: 72%;
    }

    .containerForm {
        width: 70%;
    }

    .line {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .logo {
        height: 38px;
    }

    nav {
        margin: 12px 20px;
    }

    .content h1 {
        font-size: 1.6em;
    }

    .box-content {
        height: 200px;
        width: 200px;
    }

    nav ul {
        display: none;
    }

    .nav-box {
        display: flex;
        flex-direction: column;
    }

    .box-content.active {
        font-size: 1.5em;
    }
}