body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7f6;
    background-image: url('../assets/images/others/background.jpg'); /* Sesuaikan path background blur */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.form-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.section-title {
    color: #2c3e50;
    border-bottom: 2px solid #fec107;
    padding-bottom: 10px;
    margin-bottom: 25px;
    margin-top: 30px;
    font-weight: 700;
}
.form-control, .form-select {
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    padding-left: 0;
    background-color: transparent;
}
.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-bottom-color: #28a745;
    background-color: transparent;
}
.form-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-submit {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-submit:hover {
    background-color: #218838;
    color: white;
}