.form-root {
    width: min(90%, 630px);
    height: auto;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    background: #475CA3;
    background: linear-gradient(135deg, rgba(71, 92, 163, 1) 0%, rgba(50, 65, 115, 1) 100%);
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.2);
    padding: 28px 36px 28px 36px;
    z-index: 50;
}

.form-root #judul-form {
    color: var(--primary-blue);
}

.content-root {
    margin-top: 5em;
    display: flex;
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.parent-form {
    width: min(90%, 1072px);
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

.parent-form-1 {
    width: min(90%, 1072px);
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    z-index: 50;
}

.logosit {
    border-radius: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
    z-index: 50;
}

.kotak-form {
    width: 472px;
    height: auto;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    column-gap: 20px;
    background: #475CA3;
    background: linear-gradient(135deg, rgba(71, 92, 163, 1) 0%, rgba(50, 65, 115, 1) 100%);
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.2);
    padding: 28px 36px 28px 36px;
    z-index: 50;
}

.form-judul {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 32px;
}

.input-sign {
    border-radius: 12px;
    margin-top: 4px;
    border: 2px solid black
}

.label-sign {
    color: white;
}

.attention-mob {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 10px;
    text-align: center;
    font-size: 0.75em;
}

.attention-desk {
    display: block;
    justify-content: center;
    align-items: center;
    margin: 1em;
    margin-top: 2em;
    text-align: center;
    font-size: 0.75em;
}

.message_alert {
    margin: 30px;
    text-align: center;
}


.wrapper {
    z-index: -1;
    transform: rotate(60deg);
    width: 50vw;
    overflow: hidden;
}

.track {
    display: flex;
    width: 100vw;
    animation: slide 30s linear infinite;
}

.track img {
    width: 50vw;
    flex-shrink: 0;
}

#anim1 {
    position: absolute;
    left: 10vw;
    top: -8vw;
    transform: rotate(-90deg) scale(1.8);
}

#anim2 {
    position: absolute;
    left: 85vw;
    top: 29vw;
    transform: rotate(90deg) scale(1.8);
    z-index: -1;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50vw);
    }
}

@media only screen and (max-width: 1100px) {
    .parent-form {
        width: min(90%, 1072px);
        height: auto;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .parent-form-1 {
        width: min(90%, 1072px);
        height: auto;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        justify-content: center;
        align-items: center;
        z-index: 50;
    }

    .attention-mob {
        display: block;
        justify-content: center;
        align-items: center;
        margin: 1em;
        margin-top: 2em;
        text-align: center;
        font-size: 0.75em;
    }

    .attention-desk {
        display: none;
        justify-content: center;
        align-items: center;
        margin: 1em;
        margin-top: 2em;
        text-align: center;
        font-size: 0.75em;
    }

    .logosit {
        border-radius: 100%;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
        width: 140px;
        height: 140px;
    }

    .kotak-form {
        width: min(90%, 472px);
        height: auto;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        column-gap: 20px;
        background: #475CA3;
        background: linear-gradient(135deg, rgba(71, 92, 163, 1) 0%, rgba(50, 65, 115, 1) 100%);
        box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.2);
        padding: 28px 36px 28px 36px;
    }

    .message_alert {
        margin: 0;
        text-align: center;
    }

    #anim1 {
        position: absolute;
        left: -5vw;
        top: 20vw;
        transform: rotate(-90deg) scale(1.8);
    }

    #anim2 {
        position: absolute;
        left: 13vw;
        top: 150vw;
        transform: rotate(90deg) scale(1.8);
        z-index: -1;
    }
}


.login-gambar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

input[type=email],
input[type=password],
input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 1em;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;

}

#submitbutton {
    float: right;
    width: 100%;
}

.attention {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em;
    margin-top: 2em;
    text-align: center;
    font-size: 0.75em;
}

@media only screen and (min-width: 800px) {
    .form-root {
        width: min(90%, 630px);
        height: auto;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        background: #475CA3;
        background: linear-gradient(135deg, rgba(71, 92, 163, 1) 0%, rgba(50, 65, 115, 1) 100%);
        box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.2);
        padding: 28px 36px 28px 36px;
        z-index: 50;
    }

    .form-root #judul-form {
        color: var(--primary-blue);
    }

    .content-root {
        margin-top: 5em;
        display: flex;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: center;
    }

    .uppy {
        width: auto;
    }

    .object {
        grid-column: 3/4;
        width: 30vw;
        float: right;
        margin-left: 3em;
    }

    input[type=submit] {
        width: 100%;
        background-color: #4CAF50;
        color: white;
        padding: 14px 20px;
        margin: 8px 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    input[type=email],
    input[type=password],
    input[type=text],
    select {
        width: 100%;
        padding: 12px 20px;
        margin-bottom: 1em;
        display: inline-block;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

    #submitbutton {
        float: right;
        width: 100%;
    }

    .attention {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2em;
        text-align: center;
    }
}