@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: solid #ff0000 2px;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.logo {
    max-width: 300px;
    height: auto;
    width: 100%;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.center-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.center-image img {
    max-width: 100%;
    height: auto;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 5%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-box {
    text-align: center;
    color: white;
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    margin: 5px;
}

.feature-box img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.feature-box h3 {
    margin: 5px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
}

.button {
    padding: 10px 30px;
    width: 100%;
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #8B0000, #590000);
    color: white;
    letter-spacing: 1px;
}

.daftar {
    border-bottom-left-radius: 10px;
    border-right: 1px solid white;
}

.login {
    border-bottom-right-radius: 10px;
}

.iframe-container {
    max-width: 1200px;
    width: 100%;
    height: 1000px;
    min-height: 900px;
    max-height: 900px;
    margin-top: 20px;
    margin-bottom: 100px;
    display: none;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

#hitungIframe {
    display: block; 
}

@media (max-width: 480px) {

    .logo {
        max-width: 200px;
        height: auto;
        width: 100%;
    }

    .main-container {
        padding: 5px;
    }

    .feature-box {
        min-width: 80px;
    }

    .feature-box h3 {
        font-size: 11px;
        font-weight: 600;
    }

    .button {
        font-size: 16px;
        font-weight: 700;
        padding: 8px 15px;
    }
}