/* css/form.css */
* { box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 30px 20px;
}
.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
h1 {
    color: #1f2937;
    margin-top: 0;
    font-size: 28px;
    border-left: 5px solid #c89b3c;
    padding-left: 18px;
}
.intro { color: #555; margin-bottom: 25px; }
label {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #1f2937;
}
input, textarea, select {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}
input:focus, textarea:focus, select:focus {
    border-color: #c89b3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(200,155,60,0.2);
}
textarea { height: 100px; resize: vertical; }
.help-text { font-size: 12px; color: #888; margin-top: 5px; }
.experience-item {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.remove-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 13px;
}
.remove-btn:hover { background: #b91c1c; }
#addExperience {
    background: #c89b3c;
    color: #1f2937;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 5px;
}
#addExperience:hover { background: #b88a2e; }
button[type="submit"] {
    background: #1f2937;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    cursor: pointer;
    width: 100%;
}
button[type="submit"]:hover { background: #0f172a; }
hr { margin: 20px 0; border: 0; border-top: 1px solid #eee; }
.photo-preview { margin-top: 10px; max-width: 140px; }
.photo-preview img { width: 100%; border-radius: 50%; border: 3px solid #c89b3c; }
.template-select { background: white; }