/* LGG CRM – Frontend Form Styles */
.lgg-form-wrap {
    max-width: 820px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.lgg-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 32px 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.lgg-section-title {
    margin: 24px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #1a73e8;
    color: #1a73e8;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lgg-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.lgg-row.lgg-full { flex-direction: column; }
.lgg-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}
.lgg-form label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}
.req { color: #e53935; }
.lgg-form input[type="text"],
.lgg-form input[type="email"],
.lgg-form input[type="tel"],
.lgg-form input[type="number"],
.lgg-form input[type="date"],
.lgg-form select,
.lgg-form textarea {
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: border-color .2s;
    width: 100%;
    box-sizing: border-box;
}
.lgg-form input:focus,
.lgg-form select:focus,
.lgg-form textarea:focus {
    border-color: #1a73e8;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26,115,232,.12);
}
.lgg-btn {
    display: inline-block;
    background: #1a73e8;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s;
}
.lgg-btn:hover { background: #1558b0; }
.lgg-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 14px 20px;
    margin-bottom: 20px;
    color: #2e7d32;
    font-weight: 600;
    font-size: 15px;
}
@media (max-width: 600px) {
    .lgg-form { padding: 18px; }
    .lgg-row { flex-direction: column; }
}
