:root {
    --primary-color: #FF5A5F;
    --secondary-color: #0066CC;
    --text-color: #333;
}

/* Reset básico e definição da fonte padrão */
 
.property-info {
    padding: 1rem;
}

 
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

