/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

/* Section container styling */
.sec-komunitas {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.sec-komunitas .container {
    max-width: 390px; /* mimic mobile screen */
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sec-komunitas .container p{
    color: red;
}

/* Heading style */
.sec-komunitas h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Logo style */
.img-komunitas {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Button style */
.button-komunitas {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    background-color: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button-komunitas:hover {
    background-color: #0b5ed7;
}

/* Responsive design for larger tablets/desktops */
@media (min-width: 768px) {
    .sec-komunitas .container {
        margin-top: 40px;
    }
}

@media (max-width: 500px) {

    body, html {
        background-color: #ffffff;
    }

    .sec-komunitas .container {
        margin-top: 40px;
        box-shadow: none;
    }
}