/* CSS hasil ekstrak dari fobs.htm */
html, body {
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #202124;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Tambahan class dari Google Form */
.freebirdFormviewerViewHeaderTitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.freebirdFormviewerViewHeaderDescription {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 20px;
}

.freebirdFormviewerViewItemTitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.freebirdFormviewerViewItemDescription {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 10px;
}

.freebirdFormviewerViewNumberedItemContainer {
    margin-bottom: 24px;
}

/* Input dan Select style */
.quantumWizTextinputPaperinputInput {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    outline: none;
    width: 100%;
    background-color: #f5f5f5;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.quantumWizTextinputPaperinputInput:focus {
    background-color: #fff;
    border-color: #1a73e8;
}

.quantumWizTextinputPapertextareaInput {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    outline: none;
    width: 100%;
    min-height: 80px;
    background-color: #f5f5f5;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.quantumWizTextinputPapertextareaInput:focus {
    background-color: #fff;
    border-color: #1a73e8;
}

select {
    font-size: 16px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #dadce0;
    background: #f5f5f5;
    outline: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

select:focus {
    background-color: #fff;
    border-color: #1a73e8;
}

/* File upload style */
input[type=file] {
    font-size: 16px;
    border: 1px solid #dadce0;
    padding: 8px;
    border-radius: 4px;
}

/* Button submit style */
.button-submit {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.button-submit:hover {
    background-color: #1765c1;
}

/* Validator error style */
.field-error {
    color: red;
    font-size: 12px;
    margin-top: 4px;
}
.form-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.form-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        margin-bottom: 6px;
        font-weight: 500;
    }

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #dadce0;
}

.form-wrapper {
    width: 50%;          /* lebar 80% dari layar */
    margin: 0 auto;      /* posisikan di tengah */
    padding: 20px;       /* jarak dalam */
    box-sizing: border-box;
}

.file-upload {
    margin-top: 5px;
}

/* Validation Summary */
.validation-summary {
    background-color: #fce8e6 !important;
    border: 2px solid #d93025 !important;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 16px;
    color: #d93025 !important;
    font-size: 14px;
    line-height: 1.6;
}

.validation-summary span,
.validation-summary li,
.validation-summary ul {
    color: #d93025 !important;
    font-weight: 500;
}

.validation-summary li {
    margin-bottom: 4px;
}

.validation-summary ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}