main div {
    margin: 0 auto;
}

main
 h1>div {
	display: inline;
	float: right;
	font-size: 16px;
}

.formulir, .kotak {
	background-color: white;
	border-top: 4px solid #00c0ef;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	margin: 16px 8px 0;
	padding: 8px 16px;
	width: calc(100% - 48px);
}



.kotak .kotak-judul {
	border-bottom: 1px solid #e7e7e7;
	color: #333333;
	font-size: 18px;
	font-weight: 500;
	margin: 0 -16px 8px;
	padding: 0 16px 8px;
}

.kotak .kotak-judul .material-icons {
	float: right;
}

.kotak-dalam .kotak-isian{
	flex: 0 0 calc(40% - 5px);

}


.kotak table {
	width: 100%;
}

.formulir-grup, .kotak-grup {
	padding: 8px 0;
}

.kotak-grup {
	width: 100%;
}

.kotak-grup th {
	vertical-align: bottom;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color:#fff;
}

.hero-content {
    max-width: 50%;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 15px;
    color: #333;
}
.hero-content h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px;
    /* color: #333; */
}

.hero-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.input-container {
    display: flex;
    gap: 10px;
    flex-wrap:nowrap;
}

.input-container button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.4s ease-in-out;
}

.material-icons {
	font-size: 100%;
	padding-right: 4px;
}

.button {
    background-color: #dfe0f0;
	border: 1px solid #dddddd;
	border-radius: 4px;
	color: #444444;
	cursor: pointer;
	padding: 8px 12px 8px 12px;
	/* white-space: nowrap; */
}

.button-green {
	background-color: #399b52;
	border-color: #004d00;
	color: white;
}

.button-green:hover {
	background-color: #004d00;
}

.button .material-icons {
	font-size: 100%;
	padding-right: 4px;
}

.button-primary {
    background-color: #3da6cf;
    color: #fff;
}

.button-primary:hover {
    background-color: #326b8f;
}

.button-secondary {
    background-color: #49d48a;
    color: #fff;
}

.button-secondary:hover {
    background-color: #286b54;
}

.hero-image {
    order: 3;
    max-width: 50%;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.signin-text {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.signin-text a {
    color: #007bff;
    text-decoration: none;
}

.signin-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 0;
        text-align: center;
    }

    .hero-content p, .descriptions {
      text-align: justify;
      font-size: 10px;
    }

    .hero-image img {
        max-width: 70%;
    }

    .input-container {
        flex-direction: column;
        gap: 10px;
    }

    .button-primary, .button-secondary {
        width: 100%;
    }

    span.text-tombol {
        display: none;
    }
}
