/* assets/css/formulir.css */

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.form-main-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}

.form-section-title {
    font-weight: 700;
    font-size: 1rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

/* Style untuk baris Radio Button (Kriteria & Spesifikasi) */
.radio-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
    font-size: 0.9rem;
    color: #555;
}

/* Menghilangkan border di baris terakhir */
.radio-row:last-child {
    border-bottom: none;
}

.radio-options {
    white-space: nowrap;
    display: flex;
    gap: 15px;
}

.radio-options label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

/* Style untuk Data Pengirim (Input Text) */
.form-group-custom {
    margin-bottom: 15px;
}

.form-group-custom input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-group-custom input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* Button Submit Merah */
.btn-submit-merah {
    background-color: #ff0000;
    color: white;
    font-weight: 600;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    margin-top: 25px;
    transition: background-color 0.3s;
}

.btn-submit-merah:hover {
    background-color: #cc0000;
    color: white;
}