﻿/* 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: none;
    border: 1px solid #dadce0;
    outline: none;
    width: 100%;
   
}

.quantumWizTextinputPapertextareaInput {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    outline: none;
    width: 100%;
    min-height: 80px;
}

select {
    font-size: 16px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #dadce0;
    background: white;
    outline: none;
}

/* 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;
}