
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.developer-original-navbar {
    position:fixed;
    top:0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #080080;
    color: white;
    width:100vw;
    height:60px;
    padding: 0.5rem 1rem;
    z-index:1000;
}

.developer-original-navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.developer-original-logo {
    font-size: 1.5rem;
}

.developer-original-menu {
    display: flex;
    gap: 1rem;
    transform: translateX(-50px);
}

.developer-original-menu a {
    font-size: 1rem;
}

.developer-original-footer-top {
    position: relative;
    background-color: #080080;
    color: white;
    padding:50px 70px;

    & .developer-original-medsos{
        position: absolute;
        right:110px;
        top:40px;
        
        & img{
            width:50px;
            margin: 5px;

            &:hover{
                filter: brightness(70%);
            }
        }
    }
}

.developer-original-footer-top .developer-original-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.developer-original-footer-top .developer-original-footer-contact p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.developer-original-footer-top .developer-original-footer-contact strong {
    color: #ffffff;
}

.developer-original-footer-copyright {
    background-color: #080080;
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 1rem;
}

.developer-original-footer-copyright .developer-original-sitename {
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 0 0.5rem;
}

.developer_original_button_daftar{
    & button,& input[type="Submit"]{
        position: absolute;
        left:50%;
        transform: translateX(-50%);
        background: rgb(0, 132, 255);
        width: 50%;
        height:60px;
        border-radius: 10px;
        color:white;
        font-size: bold;
        border: 2px solid cyan;
        transition: 0.3s;

        &:hover{
            border: 2px solid rgb(0, 140, 255);
            background: rgb(0, 174, 255);
            box-shadow: 0px 0px 10px cyan;
        }
    }
}

.developer_original_form{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    
    &  form div[parent]{
        background: rgb(228, 228, 228);
        border-radius: 10px;
        width: 100%;
        padding:10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap:20px;

        &[hidden]{
            display: none;
            opacity: 0%;
        }
    }
    
    & div[A], div[B]{
        width: 500px;

        & div{
            position: relative;
            display: inline-block;
        
            & span[A]{
                position: absolute;
                width:500px;
                height: 45px;
                border-radius: 10px;
                margin-top:2px;
                padding:5px;
                left:-3px;
                overflow: hidden;
                pointer-events: none;

                & span[B]{
                    display: inline-block;
                    position: absolute;
                    left:50%;
                    top:104%;
                    transform: translate(-50%, -50%) scaleX(1);
                    content: "";
                    background: rgb(0, 38, 255);
                    width:10px;
                    height:10px;
                    transition: 0.5s;
                    opacity: 0%;
                }
            }

            &:has(input:focus){
                & input{
                    box-shadow: 0px 0px 10px rgba(0, 0, 255, 0.5);
                    color:blue;
                }

                & span[B]{
                    transform: translate(-50%, -50%) scaleX(50);
                    opacity: 100%;
                }
            }
        }
    }

    & input, select{
        width: 500px;
        height: 45px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin-top:10px;
        padding:5px;
        outline: none;
        background: white;
        z-index: 10;
        transition: 0.5s;

        &:hover{
            border-color: blue;
        }
    }

    & input[type="text"]{
        width: 490px;
        height: 35px;
    }

    & .developer-original-warning{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background:#0036aa;
        color: white;
        height: 30px;
        border-radius: 7px;
        padding: 10px 20px 10px 20px;
        font-weight: bold;
    }
}

.developer-original-image-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 5rem 0;
  }
  
.developer-original-image-section img {
    width: 50%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.developer-original-image-section span {
    width: 50%;
    padding: 1rem;
    box-sizing: border-box;
}

.developer-original-image-section span h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.developer-original-image-section span h5 {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight:normal;
}

.developer-original-modal, .developer-original-modal-02{
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background: white;
    width:400px;
    height:200px;
    padding:10px;
    border-radius: 10px;
    z-index: 10000;
    text-align: center;
    transition: 0.3s;
    opacity: 0%;
    pointer-events: none;

    & div[question]{
        background: rgb(238, 238, 238);
        padding: 10px;
        border-radius: 7px;
        font-size: 18px;
        color: #2a2a2a;
    }

    & div[decision]{
        & button{
            width:80px;
            height: 40px;
            font-size: 14px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            color: #ffffff;
        }
        & :nth-child(1){
            background: rgb(0, 119, 255);

            &:hover{
                background-color: #0065d1;
            }
        }
        & :nth-child(2){
            background: rgb(0, 119, 255);

            &:hover{
                background-color: #0065d1;
            }
        }
    }

    & img{
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%, -50%);
        width:400px;
    }
}

.developer-original-modal-02{
    height:300px;
    background: none;

    & div[decision]{
        & button{
            width:120px;
            transform: translateY(-100px);
        }

        & :nth-child(1){
            background: rgb(51, 255, 0);
            
            &:hover{
                background-color: #07ca00;
            }
        }

        & :nth-child(2){
            background: rgb(0, 119, 255);

            &:hover{
                background-color: #0065d1;
            }
        }
    }

    & img{
        position: relative;
    }
}

.developer-original-blackbarrier{
    position: fixed;
    width:100vw;
    height:100vh;
    left:0px;
    top:0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0%;
    transition: 0.3s;
    pointer-events: none;
}

.developer-original-home-register{
    margin-top: 50px;
    background: url('../img/halo.jpeg') no-repeat bottom center;
    background-size: cover;
    width:100vw;
    height:650px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    & span img{
        width:300px;
    }

    & div{
        background: rgba(0, 0, 0, 0.6);
        padding:50px 20px;
        border-radius: 10px;
        width:80%;
        color:white;
        text-align: center;
    }
}

.developer-original-persyaratan-daftar{
    margin-top: 50px;
    width:100%;
    text-align: center;

    & h1{
        color: #07006e;
    }

    & div[persyaratan]{
        display: flex;
        flex-wrap: wrap;
        gap:20px;
        width: 100%;
        justify-content: center;

        & div[items]{
            display: flex;
            background: white;
            width:350px;
            height:80px;
            border-radius: 7px;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
            transition: 0.3s;

            & div[left]{
                display: flex;
                align-items: center;
                justify-content: center;
                color:white;
                font-weight: bold;
                width:50px;
                border-radius: 7px;
                font-size: 25px;
                
                &[L01]{
                    background: rgb(182, 170, 0);
                }
                &[L02]{
                    background: rgb(182, 109, 0);
                }
                &[L03]{
                    background: rgb(182, 27, 0);
                }
                &[L04]{
                    background: rgb(140, 0, 182);
                }
                &[L05]{
                    background: rgb(0, 130, 182);
                }
                &[L06]{
                    background: rgb(0, 182, 30);
                }
            }

            & div[right]{
                display: flex;
                align-items: center;
                text-align: left;
                padding:10px;
            }

            &:hover{
                transform: scale(1.03);
                box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.4);
            }
        }
    }
}

.developer-original-tab{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;

    & div[tabs]{
        width: 300px;
        display: flex;
        overflow: hidden;
        border-radius: 7px;
        height: 50px;

        & button{
            width:50%;
            height: 100%;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            background: rgba(0, 0, 0, 0.1);
            color: rgba(0, 0, 0, 0.8);

            &:hover{
                background-color: #0065d1;
                color: white;
                font-weight: bold;
            }

            &[active]{
                background-color: #0065d1;
                color: white;
                font-weight: bold;
            }
        }
    }
}

::-webkit-scrollbar {
        width: 12px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
        background-color: #0036aa;
        border-radius: 10px;
        border: 3px solid #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background-color: #07006e; 
}

@media (max-width:1000px){
    .developer-original-footer-top {
        & .developer-original-medsos{
            right:30px;
            top:auto;
            bottom:10px;

            & img{
                width:40px;
                margin: 3px;
            }
        }
    }
}

@media (max-width: 768px) {
    .developer-original-footer-top {
        padding:50px 20px;
    }
    
    .developer-original-image-section {
        flex-direction: column;
        align-items: center;
    }

    .developer-original-image-section img {
        width: 100%;
    }

    .developer-original-image-section span {
        width: 100%;
        padding: 1rem;
        text-align: center;
    }

    .developer-original-home-register{
        height: 700px;
    }

    .developer-original-footer-top {
        & .developer-original-medsos{
            bottom:2px;
        }
    }
}

@media (max-width: 600px) {
    .developer_original_form{
        &  form div[parent]{
            flex-direction:column;
            gap:0px;
        }
        
        & div[A], div[B]{
            width: 400px;
    
            & div{
                & span[A]{
                    width:400px;
                }
            }
        }
    
        & input, select{
            width: 400px;
        }
    
        & input[type="text"]{
            width: 390px;
        }
    }

    .developer-original-logo{
        font-size:20px;
    }

    .developer-original-home-register{
        height: 750px;
    }
}

@media (max-width: 450px) {
    .developer_original_form{
        & div[A], div[B]{
            width: 300px;
    
            & div{
                & span[A]{
                    width:300px;
                }
            }
        }
    
        & input, select{
            width: 300px;
        }
    
        & input[type="text"]{
            width: 290px;
        }
    }

    .developer-original-logo{
        font-size:17px;
    }

    .developer-original-modal, .developer-original-modal-02{
        width:300px;
        height:200px;
    }

    .developer-original-modal-02{
        & img{
            width:300px;
            height:300px;
        }

        & div[decision]{
            & button{
                transform: translateY(-40px);
            }
        }
    }

    .developer-original-home-register{
        height: 850px;
    }

    .developer-original-persyaratan-daftar{
        transform: scale(0.9);
    }
}

@media (max-width: 330px) {
    .developer_original_form{
        & div[A], div[B]{
            width: 250px;
    
            & div{
                & span[A]{
                    width:250px;
                }
            }
        }
    
        & input, select{
            width: 250px;
        }
    
        & input[type="text"]{
            width: 240px;
        }
    }

    .developer-original-modal, .developer-original-modal-02{
        transform:translate(-50%, -50%) scale(0.9);
    }

    .developer-original-home-register{
        height: 900px;
    }
}