body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9f5f0;
    color: #333;
    line-height: 1.6;
}

.header-logo {
    max-height: 70px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-title {
    font-size: 2.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.header-title:hover {
    transform: scale(1.05);
}

.page-header {
    color: black;
    padding: 20px 0;
    margin-bottom: 20px;
}

.form-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.section-title {
    background-color: #005f47;
    color: #ffffff;
    padding: 12px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.section-title::before {
    content: "";
    width: 5px;
    height: 20px;
    background-color: #ffcc00;
    margin-right: 10px;
    border-radius: 3px;
}

.required-field::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #005f47;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #005f47;
    box-shadow: 0 0 0 0.25rem rgba(0, 95, 71, 0.25);
}

.btn-custom-primary {
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.15); 
}

.btn-custom-primary:hover {
    background-color: #0056b3; 
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
}

.btn-outline-secondary {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #005f47;
    color: #005f47;
}

.btn-outline-secondary:hover {
    background-color: #e9f5f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.niat-box {
    background-color: #e9f5f0;
    border-left: 4px solid #005f47;
    padding: 20px;
    font-style: italic;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
    font-size: 1.1em;
    color: #005f47;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.footer {
    background-color: #e9f5f0;
    color: black;
    padding: 25px 0;
    text-align: center;
    border-top: 5px solid #ffcc00;
    margin-top: 50px;
}

.ic-number-group input {
    width: 3em;
    text-align: center;
}

.ic-seperator {
    width: 1em;
    text-align: center;
    padding-top: 6px;
}

.checkbox-container {
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.checkbox-container:hover {
    background-color: #f0f0f0;
    border-color: #005f47;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
}

.form-check-input:checked {
    background-color: #005f47;
    border-color: #005f47;
}

.form-check-label {
    margin-left: 8px;
}

.alert-warning {
    border-radius: 10px;
    border-left: 5px solid #ffcc00;
    background-color: #fff8e6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.alert-warning h5 {
    color: #005f47;
}

.alert-warning ul li {
    margin-bottom: 8px;
}

.input-group-text {
    background-color: #005f47;
    color: white;
    border: 1px solid #005f47; 
    font-weight: bold; 
}

a {
    color: #0e005f;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #004d3a;
    text-decoration: underline;
}

.footer a {
    color: #1d1c1a;
}

.footer a:hover {
    color: #ffcc00;
}

@media (max-width: 768px) {
    .header-logo {
        max-height: 40px;
    }
    .header-title {
        font-size: 1.2rem;
    }
    .form-container {
        padding: 20px;
    }

    .section-title {
        font-size: 0.95rem;
    }

    .form-control,
    .form-select {
        padding: 10px;
    }

    .btn-custom-primary,
    .btn-outline-secondary {
        padding: 10px 16px;
    }
    
}

.application-type-option {
    min-width: 140px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}
.application-type-option:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.active-option {
    border: 2px solid #014d33;
    background-color: rgba(1, 77, 51, 0.05);
}
