/**
 * Agendamento Palestrante - Speaker Registration Form
 */

.agp-speaker-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.agp-speaker-form-wrap h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.agp-form-group {
    margin-bottom: 20px;
}

.agp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.agp-form-group input,
.agp-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.agp-form-group input:focus,
.agp-form-group select:focus {
    border-color: #25D366;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.agp-form-group .agp-field-desc {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #666;
}

.agp-form-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.agp-form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.agp-form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.agp-form-submit {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.agp-form-submit:hover {
    background: #1da851;
}

.agp-form-price-info {
    background: #f0f6fc;
    border-left: 4px solid #0073aa;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.agp-form-note {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

@media (max-width: 600px) {
    .agp-speaker-form-wrap {
        padding: 20px;
        margin: 0 10px;
    }
}
